75 references to Identifier
Microsoft.CodeAnalysis.CSharp (18)
Syntax.xml.Syntax.Generated.cs (9)
11204if (attributeLists != this.AttributeLists || modifiers != this.Modifiers || delegateKeyword != this.DelegateKeyword || returnType != this.ReturnType || identifier != this.Identifier || typeParameterList != this.TypeParameterList || parameterList != this.ParameterList || constraintClauses != this.ConstraintClauses || semicolonToken != this.SemicolonToken)
11215public new DelegateDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.Modifiers, this.DelegateKeyword, this.ReturnType, this.Identifier, this.TypeParameterList, this.ParameterList, this.ConstraintClauses, this.SemicolonToken);
11217public new DelegateDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) => Update(this.AttributeLists, modifiers, this.DelegateKeyword, this.ReturnType, this.Identifier, this.TypeParameterList, this.ParameterList, this.ConstraintClauses, this.SemicolonToken);
11218public DelegateDeclarationSyntax WithDelegateKeyword(SyntaxToken delegateKeyword) => Update(this.AttributeLists, this.Modifiers, delegateKeyword, this.ReturnType, this.Identifier, this.TypeParameterList, this.ParameterList, this.ConstraintClauses, this.SemicolonToken);
11219public DelegateDeclarationSyntax WithReturnType(TypeSyntax returnType) => Update(this.AttributeLists, this.Modifiers, this.DelegateKeyword, returnType, this.Identifier, this.TypeParameterList, this.ParameterList, this.ConstraintClauses, this.SemicolonToken);
11221public DelegateDeclarationSyntax WithTypeParameterList(TypeParameterListSyntax? typeParameterList) => Update(this.AttributeLists, this.Modifiers, this.DelegateKeyword, this.ReturnType, this.Identifier, typeParameterList, this.ParameterList, this.ConstraintClauses, this.SemicolonToken);
11222public DelegateDeclarationSyntax WithParameterList(ParameterListSyntax parameterList) => Update(this.AttributeLists, this.Modifiers, this.DelegateKeyword, this.ReturnType, this.Identifier, this.TypeParameterList, parameterList, this.ConstraintClauses, this.SemicolonToken);
11223public DelegateDeclarationSyntax WithConstraintClauses(SyntaxList<TypeParameterConstraintClauseSyntax> constraintClauses) => Update(this.AttributeLists, this.Modifiers, this.DelegateKeyword, this.ReturnType, this.Identifier, this.TypeParameterList, this.ParameterList, constraintClauses, this.SemicolonToken);
11224public DelegateDeclarationSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.Modifiers, this.DelegateKeyword, this.ReturnType, this.Identifier, this.TypeParameterList, this.ParameterList, this.ConstraintClauses, semicolonToken);
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
Microsoft.CodeAnalysis.CSharp.Features (4)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (28)
Parsing\DeclarationParsingTests.cs (26)
2008Assert.NotEqual(default, ds.Identifier);
2009Assert.Equal("b", ds.Identifier.ToString());
2035Assert.NotEqual(default, ds.Identifier);
2036Assert.Equal("b", ds.Identifier.ToString());
2063Assert.NotEqual(default, ds.Identifier);
2064Assert.Equal("b", ds.Identifier.ToString());
2110Assert.NotEqual(default, ds.Identifier);
2111Assert.Equal("b", ds.Identifier.ToString());
2156Assert.NotEqual(default, ds.Identifier);
2157Assert.Equal("b", ds.Identifier.ToString());
2191Assert.NotEqual(default, ds.Identifier);
2192Assert.Equal("b", ds.Identifier.ToString());
2226Assert.NotEqual(default, ds.Identifier);
2227Assert.Equal("b", ds.Identifier.ToString());
2268Assert.NotEqual(default, ds.Identifier);
2269Assert.Equal("b", ds.Identifier.ToString());
2304Assert.NotEqual(default, ds.Identifier);
2305Assert.Equal("b", ds.Identifier.ToString());
2340Assert.NotEqual(default, ds.Identifier);
2341Assert.Equal("b", ds.Identifier.ToString());
2377Assert.NotEqual(default, ds.Identifier);
2378Assert.Equal("b", ds.Identifier.ToString());
2410Assert.NotEqual(default, ds.Identifier);
2411Assert.Equal("b", ds.Identifier.ToString());
2461Assert.NotEqual(default, ds.Identifier);
2462Assert.Equal("c", ds.Identifier.ToString());
Microsoft.CodeAnalysis.CSharp.Workspaces (9)
Microsoft.DotNet.GenFacades (2)
Microsoft.VisualStudio.LanguageServices.CSharp (6)
Roslyn.Diagnostics.CSharp.Analyzers (4)