18 overrides of ReturnValueMarshallingInformation
Microsoft.CodeAnalysis.CSharp (18)
Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs (1)
110internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs (1)
195internal sealed override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\ErrorMethodSymbol.cs (1)
249internal sealed override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
840internal override MarshalPseudoCustomAttributeData? ReturnValueMarshallingInformation => null;
Symbols\Metadata\PE\PEMethodSymbol.cs (1)
477internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation => ReturnTypeParameter.MarshallingInformation;
Symbols\ReducedExtensionMethodSymbol.cs (1)
336internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\SignatureOnlyMethodSymbol.cs (1)
117internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation { get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\SourceMethodSymbolWithAttributes.cs (1)
1725internal override MarshalPseudoCustomAttributeData? ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedDelegateSymbol.cs (1)
133internal override MarshalPseudoCustomAttributeData? ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
262internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
126internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedImplementationMethod.cs (1)
249internal sealed override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedInstanceConstructor.cs (1)
107internal sealed override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs (1)
203internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
169internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs (1)
341internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
348internal override MarshalPseudoCustomAttributeData? ReturnValueMarshallingInformation
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
220internal override MarshalPseudoCustomAttributeData ReturnValueMarshallingInformation
10 references to ReturnValueMarshallingInformation
Microsoft.CodeAnalysis.CSharp (7)
Emitter\Model\MethodSymbolAdapter.cs (2)
535return AdaptedMethodSymbol.ReturnValueMarshallingInformation; 685return this.ReturnValueMarshallingInformation != null;
Emitter\NoPia\EmbeddedMethod.cs (1)
163return UnderlyingMethod.AdaptedMethodSymbol.ReturnValueMarshallingInformation;
Lowering\SynthesizedMethodBaseSymbol.cs (1)
169internal sealed override MarshalPseudoCustomAttributeData? ReturnValueMarshallingInformation => InheritsBaseMethodAttributes ? BaseMethod.ReturnValueMarshallingInformation : null;
Symbols\ReducedExtensionMethodSymbol.cs (1)
338get { return _reducedFrom.ReturnValueMarshallingInformation; }
Symbols\Retargeting\RetargetingMethodSymbol.cs (1)
207return _retargetingModule.RetargetingTranslator.Retarget(_underlyingMethod.ReturnValueMarshallingInformation);
Symbols\Wrapped\WrappedMethodSymbol.cs (1)
224return UnderlyingMethod.ReturnValueMarshallingInformation;
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Retargeting\RetargetingTests.cs (2)
1235CheckMarshallingInformation(a.ReturnValueMarshallingInformation, b.ReturnValueMarshallingInformation);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
FunctionPointerUtilities.cs (1)
92Assert.Null(symbol.ReturnValueMarshallingInformation);