11 overrides of MarshallingInformation
Microsoft.CodeAnalysis.CSharp (11)
Symbols\FunctionPointers\FunctionPointerParameterSymbol.cs (1)
79
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
=> null;
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
989
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\SignatureOnlyParameterSymbol.cs (1)
73
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
{ get { throw ExceptionUtilities.Unreachable(); } }
Symbols\Source\SourceClonedParameterSymbol.cs (1)
137
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\Source\SourceComplexParameterSymbol.cs (1)
1561
internal sealed override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\Source\SourceSimpleParameterSymbol.cs (1)
139
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
Symbols\Source\ThisParameterSymbol.cs (1)
124
internal sealed override MarshalPseudoCustomAttributeData?
MarshallingInformation
Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs (1)
516
internal override MarshalPseudoCustomAttributeData
MarshallingInformation
Symbols\Synthesized\SynthesizedParameterSymbol.cs (2)
330
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
388
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
=> _baseParameterForAttributes?.MarshallingInformation;
Symbols\Wrapped\WrappedParameterSymbol.cs (1)
126
internal override MarshalPseudoCustomAttributeData?
MarshallingInformation
9 references to MarshallingInformation
Microsoft.CodeAnalysis.CSharp (9)
Emitter\Model\ParameterSymbolAdapter.cs (2)
153
return AdaptedParameterSymbol.
MarshallingInformation
;
254
return this.
MarshallingInformation
!= null;
Emitter\NoPia\EmbeddedParameter.cs (1)
85
return UnderlyingParameter.AdaptedParameterSymbol.
MarshallingInformation
;
Symbols\ParameterSymbol.cs (2)
87
/// By default this information is extracted from <see cref="
MarshallingInformation
"/> if available.
95
var info =
MarshallingInformation
;
Symbols\Retargeting\RetargetingParameterSymbol.cs (1)
112
return this.RetargetingModule.RetargetingTranslator.Retarget(_underlyingParameter.
MarshallingInformation
);
Symbols\Source\SourceClonedParameterSymbol.cs (1)
139
get { return _originalParam.
MarshallingInformation
; }
Symbols\Synthesized\SynthesizedParameterSymbol.cs (1)
388
internal override MarshalPseudoCustomAttributeData? MarshallingInformation => _baseParameterForAttributes?.
MarshallingInformation
;
Symbols\Wrapped\WrappedParameterSymbol.cs (1)
128
get { return _underlyingParameter.
MarshallingInformation
; }