14 references to GetInterfaceImplementations
Microsoft.Cci.Extensions (1)
Extensions\CSharp\CSharpCciExtensions.cs (1)
865
IEnumerable<InterfaceImplementation> foundInterfaces = typeDefinition.
GetInterfaceImplementations
().Select(metadataReader.GetInterfaceImplementation).Where(impl => metadataReader.GetToken(impl.Interface) == (int)interfaceImplementationToken);
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
894
return MetadataReader.GetTypeDefinition(typeDef).
GetInterfaceImplementations
();
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (10)
Attributes\AttributeTests_NativeInteger.cs (2)
792
var interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().Single());
1380
var interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().ElementAt(1));
Attributes\AttributeTests_Nullable.cs (7)
146
var interfaceHandles = typeDef.
GetInterfaceImplementations
();
181
var interfaceHandles = typeDef.
GetInterfaceImplementations
();
1135
var interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().Single());
1138
interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().Single());
1186
var interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().Single());
1190
interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().Single());
4861
var interfaceImpl = reader.GetInterfaceImplementation(typeDef.
GetInterfaceImplementations
().Single());
Attributes\AttributeTests_Tuples.cs (1)
969
var interfaceImpls = def.
GetInterfaceImplementations
();
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
Attributes\AttributeTests_Tuples.vb (1)
816
Dim interfaceImpls = def.
GetInterfaceImplementations
()
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\Ecma\EcmaDefinitionType.cs (1)
65
foreach (InterfaceImplementationHandle h in TypeDefinition.
GetInterfaceImplementations
())