1 write to _symbol
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedNamedTypeSymbol.cs (1)
25
_symbol
= symbol;
41 references to _symbol
Microsoft.CodeAnalysis.Features (41)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedNamedTypeSymbol.cs (41)
27
var allMembers =
_symbol
.GetMembers();
54
public bool IsAnonymousType =>
_symbol
.IsAnonymousType;
55
public bool IsComImport =>
_symbol
.IsComImport;
56
public bool IsGenericType =>
_symbol
.IsGenericType;
57
public bool IsImplicitClass =>
_symbol
.IsImplicitClass;
58
public bool IsReferenceType =>
_symbol
.IsReferenceType;
59
public bool IsScriptClass =>
_symbol
.IsScriptClass;
60
public bool IsTupleType =>
_symbol
.IsTupleType;
61
public bool IsUnboundGenericType =>
_symbol
.IsUnboundGenericType;
62
public bool IsValueType =>
_symbol
.IsValueType;
63
public bool MightContainExtensionMethods =>
_symbol
.MightContainExtensionMethods;
65
public int Arity =>
_symbol
.Arity;
67
public TypeKind TypeKind =>
_symbol
.TypeKind;
68
public SpecialType SpecialType =>
_symbol
.SpecialType;
69
public ISymbol AssociatedSymbol =>
_symbol
.AssociatedSymbol;
70
public IMethodSymbol DelegateInvokeMethod =>
_symbol
.DelegateInvokeMethod;
72
public INamedTypeSymbol EnumUnderlyingType =>
_symbol
.EnumUnderlyingType;
73
public INamedTypeSymbol ConstructedFrom =>
_symbol
.ConstructedFrom;
74
public INamedTypeSymbol BaseType =>
_symbol
.BaseType;
75
public INamedTypeSymbol TupleUnderlyingType =>
_symbol
.TupleUnderlyingType;
77
public ImmutableArray<ITypeParameterSymbol> TypeParameters =>
_symbol
.TypeParameters;
78
public ImmutableArray<ITypeSymbol> TypeArguments =>
_symbol
.TypeArguments;
79
public ImmutableArray<NullableAnnotation> TypeArgumentNullableAnnotations =>
_symbol
.TypeArgumentNullableAnnotations;
80
public ImmutableArray<IMethodSymbol> InstanceConstructors =>
_symbol
.InstanceConstructors;
81
public ImmutableArray<IMethodSymbol> StaticConstructors =>
_symbol
.StaticConstructors;
82
public ImmutableArray<IMethodSymbol> Constructors =>
_symbol
.Constructors;
83
public ImmutableArray<INamedTypeSymbol> Interfaces =>
_symbol
.Interfaces;
84
public ImmutableArray<INamedTypeSymbol> AllInterfaces =>
_symbol
.AllInterfaces;
85
public ImmutableArray<IFieldSymbol> TupleElements =>
_symbol
.TupleElements;
88
=>
_symbol
.GetTypeArgumentCustomModifiers(ordinal);
91
=>
_symbol
.Construct(typeArguments);
94
=>
_symbol
.Construct(typeArguments, typeArgumentNullableAnnotations);
97
=>
_symbol
.ConstructUnboundGenericType();
100
=>
_symbol
.FindImplementationForInterfaceMember(interfaceMember);
131
ITypeSymbol ITypeSymbol.OriginalDefinition =>
_symbol
.OriginalDefinition;
136
public bool IsRefLikeType =>
_symbol
.IsRefLikeType;
140
public bool IsReadOnly =>
_symbol
.IsReadOnly;
142
public bool IsRecord =>
_symbol
.IsRecord;
144
public bool IsNativeIntegerType =>
_symbol
.IsNativeIntegerType;
146
public bool IsFileLocal =>
_symbol
.IsFileLocal;
148
public INamedTypeSymbol NativeIntegerUnderlyingType =>
_symbol
.NativeIntegerUnderlyingType;