1 instantiation of XmlComment
Microsoft.AspNetCore.OpenApi.SourceGenerators (1)
XmlComments\XmlComment.cs (1)
169return !string.IsNullOrEmpty(resolvedComment) ? new XmlComment(compilation, resolvedComment!) : null;
7 references to XmlComment
Microsoft.AspNetCore.OpenApi.SourceGenerators (7)
XmlCommentGenerator.Emitter.cs (2)
551internal static string EmitCommentsCache(IEnumerable<(string MemberKey, XmlComment? Comment)> comments, CancellationToken cancellationToken) 578internal static string EmitSourceGeneratedXmlComment(XmlComment comment)
XmlCommentGenerator.Parser.cs (4)
86internal static IEnumerable<(string, XmlComment?)> ParseComments( 91var comments = new List<(string, XmlComment?)>(); 102var parsedComment = XmlComment.Parse(symbol, compilation, value, cancellationToken);
XmlComments\XmlComment.cs (1)
159public static XmlComment? Parse(ISymbol symbol, Compilation compilation, string xmlText, CancellationToken cancellationToken)