5 implementations of IsWriteOnly
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationPropertySymbol.cs (1)
82public bool IsWriteOnly => this.GetMethod == null && this.SetMethod != null;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\PropertySymbol.cs (1)
84bool IPropertySymbol.IsWriteOnly
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
42public bool IsWriteOnly => _symbol.IsWriteOnly;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\PropertySymbol.vb (1)
129Public Overridable ReadOnly Property IsWriteOnly As Boolean Implements IPropertySymbol.IsWriteOnly
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationPropertySymbol.cs (1)
82public bool IsWriteOnly => this.GetMethod == null && this.SetMethod != null;
11 references to IsWriteOnly
Microsoft.CodeAnalysis.CodeStyle (2)
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
465property.IsWriteOnly)
INamedTypeSymbolExtensions.cs (1)
478!propertySymbol.IsWriteOnly &&
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\CompletionProviders\PropertySubPatternCompletionProvider.cs (1)
153if (symbol.IsKind(SymbolKind.Property) && !((IPropertySymbol)symbol).IsWriteOnly)
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Rename\CSharpRenameRewriterLanguageService.cs (1)
1086if (!property.Parameters.Any() && !property.IsWriteOnly)
Microsoft.CodeAnalysis.Features (3)
AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs (1)
465property.IsWriteOnly)
GenerateFromMembers\AbstractGenerateFromMembersCodeRefactoringProvider.cs (1)
64IPropertySymbol property => IsViableProperty(property) && !property.IsWriteOnly,
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
42public bool IsWriteOnly => _symbol.IsWriteOnly;
Microsoft.CodeAnalysis.VisualBasic (2)
SymbolDisplay\SymbolDisplayVisitor.Members.vb (1)
70ElseIf (symbol.IsWriteOnly) Then
Symbols\PropertySymbol.vb (1)
129Public Overridable ReadOnly Property IsWriteOnly As Boolean Implements IPropertySymbol.IsWriteOnly
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
Rename\VisualBasicRenameRewriterLanguageService.vb (1)
960If Not [property].Parameters.Any() AndAlso Not [property].IsWriteOnly Then
Microsoft.CodeAnalysis.Workspaces (1)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\INamedTypeSymbolExtensions.cs\INamedTypeSymbolExtensions.cs (1)
478!propertySymbol.IsWriteOnly &&