6 overrides of MarshallingInformation
Microsoft.CodeAnalysis.CSharp (5)
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.FieldSymbol.cs (1)
62internal override MarshalPseudoCustomAttributeData MarshallingInformation
Symbols\Metadata\PE\PEFieldSymbol.cs (1)
223internal override MarshalPseudoCustomAttributeData MarshallingInformation
Symbols\Source\FieldSymbolWithAttributesAndModifiers.cs (1)
370internal sealed override MarshalPseudoCustomAttributeData MarshallingInformation
Symbols\Synthesized\SynthesizedFieldSymbolBase.cs (1)
125internal override MarshalPseudoCustomAttributeData MarshallingInformation
Symbols\Wrapped\WrappedFieldSymbol.cs (1)
107internal override MarshalPseudoCustomAttributeData MarshallingInformation
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (1)
Symbols\DisplayClassVariable.cs (1)
194internal override MarshalPseudoCustomAttributeData MarshallingInformation
10 references to MarshallingInformation
Microsoft.CodeAnalysis.CSharp (7)
Emitter\Model\FieldSymbolAdapter.cs (2)
246return AdaptedFieldSymbol.MarshallingInformation; 326return this.MarshallingInformation != null;
Emitter\NoPia\EmbeddedField.cs (1)
104return UnderlyingField.AdaptedFieldSymbol.MarshallingInformation;
Symbols\FieldSymbol.cs (2)
308/// By default this information is extracted from <see cref="MarshallingInformation"/> if available. 316var info = MarshallingInformation;
Symbols\Retargeting\RetargetingFieldSymbol.cs (1)
108return this.RetargetingTranslator.Retarget(_underlyingField.MarshallingInformation);
Symbols\Wrapped\WrappedFieldSymbol.cs (1)
111return _underlyingField.MarshallingInformation;
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
Attributes\AttributeTests_MarshalAs.cs (1)
39Assert.Null(field.MarshallingInformation);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Retargeting\RetargetingTests.cs (2)
1226CheckMarshallingInformation(a.MarshallingInformation, b.MarshallingInformation);