5 implementations of ReturnsByRefReadonly
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationPropertySymbol.cs (1)
92public bool ReturnsByRefReadonly => _refKind == RefKind.RefReadOnly;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\PropertySymbol.cs (1)
108bool IPropertySymbol.ReturnsByRefReadonly => _underlying.ReturnsByRefReadonly;
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
48public bool ReturnsByRefReadonly => _symbol.ReturnsByRefReadonly;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\PropertySymbol.vb (1)
586Private ReadOnly Property IPropertySymbol_ByRefReturnIsReadonly As Boolean Implements IPropertySymbol.ReturnsByRefReadonly
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationPropertySymbol.cs (1)
92public bool ReturnsByRefReadonly => _refKind == RefKind.RefReadOnly;
10 references to ReturnsByRefReadonly
Microsoft.CodeAnalysis.CSharp (1)
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
151else if (symbol.ReturnsByRefReadonly)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
PropertyGenerator.cs (1)
143else if (property.ReturnsByRefReadonly)
Microsoft.CodeAnalysis.CSharp.Features (1)
SignatureHelp\ElementAccessExpressionSignatureHelpProvider.cs (1)
255else if (indexer.ReturnsByRefReadonly)
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
PropertyGenerator.cs (1)
143else if (property.ReturnsByRefReadonly)
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
2307oldProperty.ReturnsByRefReadonly == newProperty.ReturnsByRefReadonly &&
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
48public bool ReturnsByRefReadonly => _symbol.ReturnsByRefReadonly;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\PropertySymbol.vb (1)
586Private ReadOnly Property IPropertySymbol_ByRefReturnIsReadonly As Boolean Implements IPropertySymbol.ReturnsByRefReadonly
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Utilities\SignatureComparer.cs (2)
160property1.ReturnsByRefReadonly == property2.ReturnsByRefReadonly &&