5 implementations of ReturnsByRef
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationAbstractMethodSymbol.cs (1)
43public abstract bool ReturnsByRef { get; }
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\MethodSymbol.cs (1)
322bool IMethodSymbol.ReturnsByRef => _underlying.ReturnsByRef;
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
92public bool ReturnsByRef => _symbol.ReturnsByRef;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\MethodSymbol.vb (1)
1013Private ReadOnly Property IMethodSymbol_ReturnsByRef As Boolean Implements IMethodSymbol.ReturnsByRef
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationAbstractMethodSymbol.cs (1)
43public abstract bool ReturnsByRef { get; }
20 references to ReturnsByRef
Microsoft.CodeAnalysis.CSharp (3)
SymbolDisplay\SymbolDisplayVisitor.Members.cs (2)
357if (symbol.ReturnsByRef) 655if (symbol.ReturnsByRef)
SymbolDisplay\SymbolDisplayVisitor.Types.cs (1)
247if (invokeMethod.ReturnsByRef)
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpUseRangeOperatorDiagnosticAnalyzer.cs (1)
277var refReturnMismatch = indexer.ReturnsByRef != invocation.TargetMethod.ReturnsByRef;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
TypeSyntaxExtensions.cs (1)
59if (method.ReturnsByRef)
Microsoft.CodeAnalysis.CSharp.Features (1)
CSharpUseRangeOperatorDiagnosticAnalyzer.cs (1)
277var refReturnMismatch = indexer.ReturnsByRef != invocation.TargetMethod.ReturnsByRef;
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Source\DelegateTests.cs (2)
831Assert.False(lambda.ReturnsByRef); 838Assert.False(lambda.ReturnsByRef);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\TypeSyntaxExtensions.cs\TypeSyntaxExtensions.cs (1)
59if (method.ReturnsByRef)
Microsoft.CodeAnalysis.Features (3)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
2299=> oldMethod.ReturnsByRef == newMethod.ReturnsByRef &&
MetadataAsSource\AbstractMetadataAsSourceService.WrappedMethodSymbol.cs (1)
92public bool ReturnsByRef => _symbol.ReturnsByRef;
Microsoft.CodeAnalysis.VisualBasic (3)
SymbolDisplay\SymbolDisplayVisitor.Members.vb (1)
181If symbol.ReturnsByRef AndAlso format.MemberOptions.IncludesOption(SymbolDisplayMemberOptions.IncludeRef) Then
SymbolDisplay\SymbolDisplayVisitor.Types.vb (1)
123If invokeMethod.ReturnsByRef AndAlso format.MemberOptions.IncludesOption(SymbolDisplayMemberOptions.IncludeRef) Then
Symbols\MethodSymbol.vb (1)
1013Private ReadOnly Property IMethodSymbol_ReturnsByRef As Boolean Implements IMethodSymbol.ReturnsByRef
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
ExpressionSyntaxExtensions.vb (1)
160Not methodSymbol.ReturnsByRef AndAlso
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Extensions\ExpressionSyntaxExtensions.vb\ExpressionSyntaxExtensions.vb (1)
160Not methodSymbol.ReturnsByRef AndAlso
Microsoft.CodeAnalysis.Workspaces (3)
Shared\Extensions\SyntaxGeneratorExtensions.cs (1)
536if (overriddenMethod.ReturnsByRef)
Shared\Utilities\SignatureComparer.cs (2)
201method1.ReturnsByRef != method2.ReturnsByRef ||