6 implementations of ReturnValueIsMarshalledExplicitly
Microsoft.CodeAnalysis (4)
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
67public bool ReturnValueIsMarshalledExplicitly => OldDefinition.ReturnValueIsMarshalledExplicitly;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
223bool Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly => ReturnValueIsMarshalledExplicitly;
Emit\NoPia\VtblGap.cs (1)
124bool Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly
PEWriter\RootModuleStaticConstructor.cs (1)
70public bool ReturnValueIsMarshalledExplicitly => false;
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\MethodSymbolAdapter.cs (1)
518bool Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\MethodSymbolAdapter.vb (1)
415Private ReadOnly Property IMethodDefinitionReturnValueIsMarshalledExplicitly As Boolean Implements Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly
5 references to ReturnValueIsMarshalledExplicitly
Microsoft.CodeAnalysis (4)
Emit\EditAndContinue\DeletedMethodDefinition.cs (1)
67public bool ReturnValueIsMarshalledExplicitly => OldDefinition.ReturnValueIsMarshalledExplicitly;
PEWriter\MetadataWriter.cs (2)
584if (methodDef.ParameterCount == 0 && !(methodDef.ReturnValueIsMarshalledExplicitly || IteratorHelper.EnumerableIsNotEmpty(methodDef.GetReturnValueAttributes(Context)))) 597if (methodDef.ReturnValueIsMarshalledExplicitly || IteratorHelper.EnumerableIsNotEmpty(methodDef.GetReturnValueAttributes(Context)))
PEWriter\ReturnValueParameter.cs (1)
77get { return _containingMethod.ReturnValueIsMarshalledExplicitly; }
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\MethodSymbolAdapter.vb (1)
415Private ReadOnly Property IMethodDefinitionReturnValueIsMarshalledExplicitly As Boolean Implements Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly