5 implementations of ReturnValueIsMarshalledExplicitly
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeletedPEMethodDefinition.cs (1)
116public bool ReturnValueIsMarshalledExplicitly
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
67public bool ReturnValueIsMarshalledExplicitly => OldDefinition.ReturnValueIsMarshalledExplicitly;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
229bool Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly => ReturnValueIsMarshalledExplicitly;
Emit\NoPia\VtblGap.cs (1)
128bool Cci.IMethodDefinition.ReturnValueIsMarshalledExplicitly
PEWriter\RootModuleStaticConstructor.cs (1)
74public bool ReturnValueIsMarshalledExplicitly => false;
4 references to ReturnValueIsMarshalledExplicitly
Microsoft.CodeAnalysis (4)
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
67public bool ReturnValueIsMarshalledExplicitly => OldDefinition.ReturnValueIsMarshalledExplicitly;
PEWriter\MetadataWriter.cs (2)
586if (methodDef.ParameterCount == 0 && !(methodDef.ReturnValueIsMarshalledExplicitly || IteratorHelper.EnumerableIsNotEmpty(methodDef.GetReturnValueAttributes(Context)))) 599if (methodDef.ReturnValueIsMarshalledExplicitly || IteratorHelper.EnumerableIsNotEmpty(methodDef.GetReturnValueAttributes(Context)))
PEWriter\ReturnValueParameter.cs (1)
79get { return _containingMethod.ReturnValueIsMarshalledExplicitly; }