5 implementations of ReturnsByRef
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationPropertySymbol.cs (1)
90public bool ReturnsByRef => _refKind == RefKind.Ref;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\PropertySymbol.cs (1)
106bool IPropertySymbol.ReturnsByRef => _underlying.ReturnsByRef;
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
46public bool ReturnsByRef => _symbol.ReturnsByRef;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\PropertySymbol.vb (1)
580Private ReadOnly Property IPropertySymbol_ReturnsByRef As Boolean Implements IPropertySymbol.ReturnsByRef
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationPropertySymbol.cs (1)
90public bool ReturnsByRef => _refKind == RefKind.Ref;
14 references to ReturnsByRef
Microsoft.CodeAnalysis.CSharp (1)
SymbolDisplay\SymbolDisplayVisitor.Members.cs (1)
147if (symbol.ReturnsByRef)
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpUseRangeOperatorDiagnosticAnalyzer.cs (1)
277var refReturnMismatch = indexer.ReturnsByRef != invocation.TargetMethod.ReturnsByRef;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
PropertyGenerator.cs (1)
139if (property.ReturnsByRef)
Microsoft.CodeAnalysis.CSharp.Features (2)
CSharpUseRangeOperatorDiagnosticAnalyzer.cs (1)
277var refReturnMismatch = indexer.ReturnsByRef != invocation.TargetMethod.ReturnsByRef;
SignatureHelp\ElementAccessExpressionSignatureHelpProvider.cs (1)
250if (indexer.ReturnsByRef)
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
PropertyGenerator.cs (1)
139if (property.ReturnsByRef)
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
2306=> oldProperty.ReturnsByRef == newProperty.ReturnsByRef &&
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
46public bool ReturnsByRef => _symbol.ReturnsByRef;
Microsoft.CodeAnalysis.VisualBasic (2)
SymbolDisplay\SymbolDisplayVisitor.Members.vb (1)
81If symbol.ReturnsByRef AndAlso format.MemberOptions.IncludesOption(SymbolDisplayMemberOptions.IncludeRef) Then
Symbols\PropertySymbol.vb (1)
580Private ReadOnly Property IPropertySymbol_ReturnsByRef As Boolean Implements IPropertySymbol.ReturnsByRef
Microsoft.CodeAnalysis.Workspaces (3)
Shared\Extensions\SyntaxGeneratorExtensions.cs (1)
448=> overriddenProperty.ReturnsByRef
Shared\Utilities\SignatureComparer.cs (2)
159return property1.ReturnsByRef == property2.ReturnsByRef &&