9 overrides of GetInterfaceMap
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
479
public override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
209
public override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) { throw new NotSupportedException(); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
132
public override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => _unmodifiedType.GetInterfaceMap(interfaceType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
193
public sealed override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
173
public override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => typeImpl.GetInterfaceMap(interfaceType);
System\RuntimeType.NativeAot.cs (1)
785
public override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
235
public override InterfaceMapping
GetInterfaceMap
(Type interfaceType)
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
479
public override InterfaceMapping
GetInterfaceMap
([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
244
public sealed override InterfaceMapping
GetInterfaceMap
(Type interfaceType) => throw new NotSupportedException(SR.NotSupported_InterfaceMapping);
7 references to GetInterfaceMap
Microsoft.AspNetCore.Mvc.Core (1)
ApplicationModels\DefaultApplicationModelProvider.cs (1)
693
declaringType.
GetInterfaceMap
(typeof(IDisposable)).TargetMethods[0] == baseMethodInfo);
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubReflectionHelper.cs (1)
15
var excludedInterfaceMethods = hubType.
GetInterfaceMap
(typeof(IDisposable)).TargetMethods;
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
100
InterfaceMapping map = UnderlyingType.
GetInterfaceMap
(typeof(System.Windows.Markup.INameScope));
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
132
public override InterfaceMapping GetInterfaceMap([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => _unmodifiedType.
GetInterfaceMap
(interfaceType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeReflectionExtensions.cs (1)
108
return typeInfo.
GetInterfaceMap
(interfaceType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
173
public override InterfaceMapping GetInterfaceMap([DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicMethods | DynamicallyAccessedMemberTypes.NonPublicMethods)] Type interfaceType) => typeImpl.
GetInterfaceMap
(interfaceType);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
237
return _typeInfo.
GetInterfaceMap
(interfaceType);