7 implementations of ReturnValueIsByRef
Microsoft.CodeAnalysis (7)
CodeGen\ArrayMembers.cs (1)
302
public virtual bool
ReturnValueIsByRef
=> false;
Emit\EditAndContinue\DeletedPEMethodDefinition.cs (1)
158
public bool
ReturnValueIsByRef
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
99
public bool
ReturnValueIsByRef
=> OldDefinition.ReturnValueIsByRef;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
298
bool Cci.ISignature.
ReturnValueIsByRef
=> UnderlyingMethodSignature.ReturnValueIsByRef;
Emit\NoPia\CommonEmbeddedProperty.cs (1)
163
bool Cci.ISignature.
ReturnValueIsByRef
Emit\NoPia\VtblGap.cs (1)
249
bool Cci.ISignature.
ReturnValueIsByRef
PEWriter\RootModuleStaticConstructor.cs (1)
104
public bool
ReturnValueIsByRef
=> false;
7 references to ReturnValueIsByRef
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\DeletedSourceMethodDefinition.cs (1)
99
public bool ReturnValueIsByRef => OldDefinition.
ReturnValueIsByRef
;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
298
bool Cci.ISignature.ReturnValueIsByRef => UnderlyingMethodSignature.
ReturnValueIsByRef
;
Emit\NoPia\CommonEmbeddedProperty.cs (1)
167
return UnderlyingPropertySignature.
ReturnValueIsByRef
;
PEWriter\MetadataWriter.cs (3)
3783
Debug.Assert(!signature.
ReturnValueIsByRef
);
3791
Debug.Assert(signature.RefCustomModifiers.IsEmpty || signature.
ReturnValueIsByRef
);
3794
var typeEncoder = returnTypeEncoder.Type(signature.
ReturnValueIsByRef
);
PEWriter\ReturnValueParameter.cs (1)
74
get { return _containingMethod.
ReturnValueIsByRef
; }