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)
518internal static string EmitCommentsCache(IEnumerable<(string MemberKey, XmlComment? Comment)> comments, CancellationToken cancellationToken) 545internal 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)
156public static XmlComment? Parse(ISymbol symbol, Compilation compilation, string xmlText, CancellationToken cancellationToken)