4 implementations of GetType
Microsoft.CodeAnalysis (2)
CodeGen\PermissionSetAttribute.cs (1)
159
public Cci.ITypeReference
GetType
(EmitContext context) => _sourceAttribute.GetType(context);
Emit\EditAndContinue\DeletedCustomAttribute.cs (1)
39
public ITypeReference
GetType
(EmitContext context)
Microsoft.CodeAnalysis.CSharp (1)
Emitter\Model\AttributeDataAdapter.cs (1)
88
Cci.ITypeReference Cci.ICustomAttribute.
GetType
(EmitContext context)
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\AttributeDataAdapter.vb (1)
54
Private Function
GetType1
(context As EmitContext) As Cci.ITypeReference Implements Cci.ICustomAttribute.GetType
6 references to GetType
Microsoft.CodeAnalysis (5)
CodeGen\PermissionSetAttribute.cs (2)
84
ISymbol iSymbol = _sourceAttribute.
GetType
(context).GetInternalSymbol()!.GetISymbol();
159
public Cci.ITypeReference GetType(EmitContext context) => _sourceAttribute.
GetType
(context);
Emit\EditAndContinue\DeletedCustomAttribute.cs (1)
41
return WrapType(OldDefinition.
GetType
(context));
PEWriter\MetadataWriter.cs (2)
3698
string typeName = customAttribute.
GetType
(context).GetSerializedTypeName(context, ref isAssemblyQualified);
3701
INamespaceTypeReference namespaceType = customAttribute.
GetType
(context).AsNamespaceTypeReference;
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\AttributeDataAdapter.vb (1)
54
Private Function GetType1(context As EmitContext) As Cci.ITypeReference Implements Cci.ICustomAttribute.
GetType