91 references to Identifier
Microsoft.CodeAnalysis.CSharp (15)
Syntax.xml.Syntax.Generated.cs (9)
13124if (attributeLists != this.AttributeLists || modifiers != this.Modifiers || type != this.Type || explicitInterfaceSpecifier != this.ExplicitInterfaceSpecifier || identifier != this.Identifier || accessorList != this.AccessorList || expressionBody != this.ExpressionBody || initializer != this.Initializer || semicolonToken != this.SemicolonToken)
13135public new PropertyDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.Modifiers, this.Type, this.ExplicitInterfaceSpecifier, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13137public new PropertyDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) => Update(this.AttributeLists, modifiers, this.Type, this.ExplicitInterfaceSpecifier, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13139public new PropertyDeclarationSyntax WithType(TypeSyntax type) => Update(this.AttributeLists, this.Modifiers, type, this.ExplicitInterfaceSpecifier, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13141public new PropertyDeclarationSyntax WithExplicitInterfaceSpecifier(ExplicitInterfaceSpecifierSyntax? explicitInterfaceSpecifier) => Update(this.AttributeLists, this.Modifiers, this.Type, explicitInterfaceSpecifier, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13144public new PropertyDeclarationSyntax WithAccessorList(AccessorListSyntax? accessorList) => Update(this.AttributeLists, this.Modifiers, this.Type, this.ExplicitInterfaceSpecifier, this.Identifier, accessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13145public PropertyDeclarationSyntax WithExpressionBody(ArrowExpressionClauseSyntax? expressionBody) => Update(this.AttributeLists, this.Modifiers, this.Type, this.ExplicitInterfaceSpecifier, this.Identifier, this.AccessorList, expressionBody, this.Initializer, this.SemicolonToken);
13146public PropertyDeclarationSyntax WithInitializer(EqualsValueClauseSyntax? initializer) => Update(this.AttributeLists, this.Modifiers, this.Type, this.ExplicitInterfaceSpecifier, this.Identifier, this.AccessorList, this.ExpressionBody, initializer, this.SemicolonToken);
13147public PropertyDeclarationSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.Modifiers, this.Type, this.ExplicitInterfaceSpecifier, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, semicolonToken);
Microsoft.CodeAnalysis.CSharp.CodeStyle (3)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (6)
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Features (15)
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (24)
Parsing\DeclarationParsingTests.cs (22)
2912Assert.NotEqual(default, propertySyntax.Identifier);
2913Assert.Equal("M", propertySyntax.Identifier.ToString());
2952Assert.NotEqual(default, propertySyntax.Identifier);
2953Assert.Equal("P", propertySyntax.Identifier.ToString());
4135Assert.NotEqual(default, ps.Identifier);
4136Assert.Equal("c", ps.Identifier.ToString());
4189Assert.NotEqual(default, ps.Identifier);
4190Assert.Equal("c", ps.Identifier.ToString());
4244Assert.NotEqual(default, ps.Identifier);
4245Assert.Equal("c", ps.Identifier.ToString());
4317Assert.NotEqual(default, ps.Identifier);
4318Assert.Equal("c", ps.Identifier.ToString());
4371Assert.NotEqual(default, ps.Identifier);
4372Assert.Equal("c", ps.Identifier.ToString());
4425Assert.NotEqual(default, ps.Identifier);
4426Assert.Equal("c", ps.Identifier.ToString());
4509Assert.NotEqual(default, ps.Identifier);
4510Assert.Equal("c", ps.Identifier.ToString());
4622Assert.NotEqual(default, ps.Identifier);
4623Assert.Equal("c", ps.Identifier.ToString());
4705Assert.NotEqual(default, ps.Identifier);
4708Assert.Equal("c", ps.Identifier.ToString());
Microsoft.CodeAnalysis.CSharp.Workspaces (11)
Microsoft.DotNet.GenFacades (1)
Microsoft.Gen.Logging (1)
Microsoft.ML.InternalCodeAnalyzer (1)
Microsoft.VisualStudio.LanguageServices.CSharp (2)
Roslyn.Diagnostics.CSharp.Analyzers (5)