2 implementations of GetType
Microsoft.CodeAnalysis (1)
CodeGen\PermissionSetAttribute.cs (1)
159
public Cci.ITypeReference
GetType
(EmitContext context) => _sourceAttribute.GetType(context);
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\AttributeDataAdapter.cs (1)
88
Cci.ITypeReference Cci.ICustomAttribute.
GetType
(EmitContext context)
4 references to GetType
Microsoft.CodeAnalysis (4)
CodeGen\PermissionSetAttribute.cs (2)
84
ISymbol iSymbol = _sourceAttribute.
GetType
(context).GetInternalSymbol()!.GetISymbol();
159
public Cci.ITypeReference GetType(EmitContext context) => _sourceAttribute.
GetType
(context);
PEWriter\MetadataWriter.cs (2)
3760
string typeName = customAttribute.
GetType
(context).GetSerializedTypeName(context, ref isAssemblyQualified);
3763
INamespaceTypeReference namespaceType = customAttribute.
GetType
(context).AsNamespaceTypeReference;