13 overrides of MarshallingInformation
Microsoft.CodeAnalysis.VisualBasic (13)
Semantics\Operators.vb (1)
3363Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Metadata\PE\PEParameterSymbol.vb (1)
520Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\ReducedExtensionMethodSymbol.vb (1)
995Friend NotOverridable Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Retargeting\RetargetingParameterSymbol.vb (1)
150Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\SignatureOnlyParameterSymbol.vb (1)
125Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Source\LambdaParameterSymbol.vb (1)
83Friend NotOverridable Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Source\MeParameterSymbol.vb (1)
126Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Source\SourceClonedParameterSymbol.vb (1)
154Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (1)
1579Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Source\SourceParameterSymbol.vb (1)
439Friend NotOverridable Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\SubstitutedParameterSymbol.vb (1)
122Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\SynthesizedSymbols\SynthesizedParameterSymbol.vb (1)
111Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
Symbols\Wrapped\WrappedParameterSymbol.vb (1)
115Friend Overrides ReadOnly Property MarshallingInformation As MarshalPseudoCustomAttributeData
15 references to MarshallingInformation
Microsoft.CodeAnalysis.VisualBasic (12)
Emit\NoPia\EmbeddedParameter.vb (1)
64Return UnderlyingParameter.AdaptedParameterSymbol.MarshallingInformation
Emit\ParameterSymbolAdapter.vb (2)
102Return AdaptedParameterSymbol.MarshallingInformation 194Return MarshallingInformation IsNot Nothing
Semantics\Operators.vb (1)
3365Return _parameterToLift.MarshallingInformation
Symbols\ParameterSymbol.vb (2)
82''' By default this information is extracted from <see cref="MarshallingInformation"/> if available. 88Dim info = MarshallingInformation
Symbols\ReducedExtensionMethodSymbol.vb (1)
997Return m_CurriedFromParameter.MarshallingInformation
Symbols\Retargeting\RetargetingParameterSymbol.vb (1)
152Return Me.RetargetingTranslator.Retarget(Me.UnderlyingParameter.MarshallingInformation)
Symbols\Source\SourceClonedParameterSymbol.vb (1)
156Return _originalParam.MarshallingInformation
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (1)
1585Return _clonedFrom.MarshallingInformation
Symbols\SubstitutedParameterSymbol.vb (1)
124Return _originalDefinition.MarshallingInformation
Symbols\Wrapped\WrappedParameterSymbol.vb (1)
117Return Me._underlyingParameter.MarshallingInformation
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
Attributes\AttributeTests.vb (1)
603Assert.Equal(UnmanagedType.I4, auto.SetMethod.Parameters(0).MarshallingInformation.UnmanagedType)
Attributes\AttributeTests_MarshalAs.vb (1)
53Assert.Null(parameter.MarshallingInformation)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (1)
SymbolsTests\Retargeting\RetargetingTests.vb (1)
199CheckMarshallingInformation(a.MarshallingInformation, b.MarshallingInformation)