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