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