11 overrides of MarshallingInformation
Microsoft.CodeAnalysis.CSharp (11)
Symbols\FunctionPointers\FunctionPointerParameterSymbol.cs (1)
76
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
=> null;
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
955
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\SignatureOnlyParameterSymbol.cs (1)
69
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
{ get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\SourceClonedParameterSymbol.cs (1)
128
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\Source\SourceComplexParameterSymbol.cs (1)
1504
internal sealed override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\Source\SourceSimpleParameterSymbol.cs (1)
134
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
Symbols\Source\ThisParameterSymbol.cs (1)
114
internal sealed override MarshalPseudoCustomAttributeData?
MarshallingInformation
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
503
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\Synthesized\SynthesizedParameterSymbol.cs (2)
326
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
381
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
=> _baseParameterForAttributes?.MarshallingInformation;
Symbols\Wrapped\WrappedParameterSymbol.cs (1)
124
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
7 references to MarshallingInformation
Microsoft.CodeAnalysis.CSharp (7)
Emitter\Model\ParameterSymbolAdapter.cs (2)
153
return AdaptedParameterSymbol.
MarshallingInformation
;
254
return this.
MarshallingInformation
!= null;
Symbols\ParameterSymbol.cs (2)
82
/// By default this information is extracted from <see cref="
MarshallingInformation
"/> if available.
90
var info =
MarshallingInformation
;
Symbols\Retargeting\RetargetingParameterSymbol.cs (1)
117
return this.RetargetingModule.RetargetingTranslator.Retarget(_underlyingParameter.
MarshallingInformation
);
Symbols\Source\SourceClonedParameterSymbol.cs (1)
130
get { return _originalParam.
MarshallingInformation
; }
Symbols\Wrapped\WrappedParameterSymbol.cs (1)
126
get { return _underlyingParameter.
MarshallingInformation
; }