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