Base:
property
ExplicitInterfaceSpecifier
Microsoft.CodeAnalysis.CSharp.Syntax.BasePropertyDeclarationSyntax.ExplicitInterfaceSpecifier
17 references to ExplicitInterfaceSpecifier
Microsoft.CodeAnalysis.CSharp (11)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2089
=> node.Update(VisitList(node.AttributeLists), VisitList(node.Modifiers), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"), (ExplicitInterfaceSpecifierSyntax?)Visit(node.
ExplicitInterfaceSpecifier
), VisitToken(node.Identifier), (AccessorListSyntax?)Visit(node.AccessorList), (ArrowExpressionClauseSyntax?)Visit(node.ExpressionBody), (EqualsValueClauseSyntax?)Visit(node.Initializer), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (9)
13171
if (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)
13182
public new PropertyDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.Modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13184
public new PropertyDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) => Update(this.AttributeLists, modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13186
public new PropertyDeclarationSyntax WithType(TypeSyntax type) => Update(this.AttributeLists, this.Modifiers, type, this.
ExplicitInterfaceSpecifier
, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13189
public PropertyDeclarationSyntax WithIdentifier(SyntaxToken identifier) => Update(this.AttributeLists, this.Modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, identifier, this.AccessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13191
public new PropertyDeclarationSyntax WithAccessorList(AccessorListSyntax? accessorList) => Update(this.AttributeLists, this.Modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, this.Identifier, accessorList, this.ExpressionBody, this.Initializer, this.SemicolonToken);
13192
public PropertyDeclarationSyntax WithExpressionBody(ArrowExpressionClauseSyntax? expressionBody) => Update(this.AttributeLists, this.Modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, this.Identifier, this.AccessorList, expressionBody, this.Initializer, this.SemicolonToken);
13193
public PropertyDeclarationSyntax WithInitializer(EqualsValueClauseSyntax? initializer) => Update(this.AttributeLists, this.Modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, this.Identifier, this.AccessorList, this.ExpressionBody, initializer, this.SemicolonToken);
13194
public PropertyDeclarationSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.Modifiers, this.Type, this.
ExplicitInterfaceSpecifier
, this.Identifier, this.AccessorList, this.ExpressionBody, this.Initializer, semicolonToken);
Compilation\SyntaxTreeSemanticModel.cs (1)
1662
return GetDeclarationName(declaration, propertyDecl.Modifiers, propertyDecl.
ExplicitInterfaceSpecifier
, propertyDecl.Identifier.ValueText);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpAccessibilityFacts.cs (1)
53
return ((PropertyDeclarationSyntax)declaration).
ExplicitInterfaceSpecifier
== null;
Microsoft.CodeAnalysis.CSharp.Features (3)
GenerateMember\GenerateVariable\CSharpGenerateVariableService.cs (2)
70
if (propertyDeclaration.
ExplicitInterfaceSpecifier
!= null)
76
var info = semanticModel.GetTypeInfo(propertyDeclaration.
ExplicitInterfaceSpecifier
.Name, cancellationToken);
ImplementInterface\AbstractChangeImplementationCodeRefactoringProvider.cs (1)
163
PropertyDeclarationSyntax member => (member, member.
ExplicitInterfaceSpecifier
, member.Identifier),
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpAccessibilityFacts.cs (1)
53
return ((PropertyDeclarationSyntax)declaration).
ExplicitInterfaceSpecifier
== null;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpAccessibilityFacts.cs (1)
53
return ((PropertyDeclarationSyntax)declaration).
ExplicitInterfaceSpecifier
== null;