18 references to Cref
Microsoft.Analyzers.Local (3)
InternalReferencedInPublicDocAnalyzer.cs (3)
138
var referencedName = crefNode.
Cref
.ToString();
145
var referencedSymbol = context.SemanticModel.GetSymbolInfo(crefNode.
Cref
).Symbol;
154
var diagnostic = Diagnostic.Create(DiagDescriptors.InternalReferencedInPublicDoc, crefNode.
Cref
.GetLocation(), referencedName);
Microsoft.CodeAnalysis.CSharp (9)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2179
=> node.Update((XmlNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitToken(node.EqualsToken), VisitToken(node.StartQuoteToken), (CrefSyntax?)Visit(node.
Cref
) ?? throw new ArgumentNullException("cref"), VisitToken(node.EndQuoteToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
15283
if (name != this.Name || equalsToken != this.EqualsToken || startQuoteToken != this.StartQuoteToken || cref != this.
Cref
|| endQuoteToken != this.EndQuoteToken)
15294
public new XmlCrefAttributeSyntax WithName(XmlNameSyntax name) => Update(name, this.EqualsToken, this.StartQuoteToken, this.
Cref
, this.EndQuoteToken);
15296
public new XmlCrefAttributeSyntax WithEqualsToken(SyntaxToken equalsToken) => Update(this.Name, equalsToken, this.StartQuoteToken, this.
Cref
, this.EndQuoteToken);
15298
public new XmlCrefAttributeSyntax WithStartQuoteToken(SyntaxToken startQuoteToken) => Update(this.Name, this.EqualsToken, startQuoteToken, this.
Cref
, this.EndQuoteToken);
15301
public new XmlCrefAttributeSyntax WithEndQuoteToken(SyntaxToken endQuoteToken) => Update(this.Name, this.EqualsToken, this.StartQuoteToken, this.
Cref
, endQuoteToken);
Binder\BinderFactory.BinderFactoryVisitor.cs (1)
1150
CrefSyntax crefSyntax = parent.
Cref
;
Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs (1)
147
CrefSyntax cref = crefAttr.
Cref
;
Syntax\SyntaxFactory.cs (1)
1659
return attributeSyntax.Kind() == SyntaxKind.XmlCrefAttribute ? ((XmlCrefAttributeSyntax)attributeSyntax).
Cref
: null;
Microsoft.CodeAnalysis.CSharp.Analyzers (1)
MetaAnalyzers\CSharpSymbolIsBannedInAnalyzersAnalyzer.cs (1)
23
protected override SyntaxNode GetReferenceSyntaxNodeFromXmlCref(SyntaxNode syntaxNode) => ((XmlCrefAttributeSyntax)syntaxNode).
Cref
;
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpDocumentationCommentService.cs (1)
30
=> xmlCref.
Cref
;
Microsoft.CodeAnalysis.CSharp.Features (1)
ReplacePropertyWithMethods\CSharpReplacePropertyWithMethodsService.cs (1)
325
return (NameMemberCrefSyntax)crefAttribute.
Cref
;
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Classification\Worker_DocumentationComments.cs (1)
272
ClassifyNode(((XmlCrefAttributeSyntax)attribute).
Cref
);
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpDocumentationCommentService.cs (1)
30
=> xmlCref.
Cref
;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpDocumentationCommentService.cs (1)
30
=> xmlCref.
Cref
;