InterfaceMapping Struct

Definition

Retrieves the mapping of an interface into the actual methods on a class that implements that interface.

public value class InterfaceMapping
public struct InterfaceMapping
[System.Runtime.InteropServices.ComVisible(true)]
public struct InterfaceMapping
type InterfaceMapping = struct
[<System.Runtime.InteropServices.ComVisible(true)>]
type InterfaceMapping = struct
Public Structure InterfaceMapping
Inheritance
InterfaceMapping
Attributes

Remarks

Use the InterfaceMapping structure when a type implements interface methods that use method names other than those specified by the interface, or when a type implements multiple interfaces which have a method with the same name.

To obtain an InterfaceMapping structure, use the Type.GetInterfaceMap method.

Fields

InterfaceMethods

Shows the methods that are defined on the interface.

InterfaceType

Shows the type that represents the interface.

TargetMethods

Shows the methods that implement the interface.

TargetType

Represents the type that was used to create the interface mapping.

Applies to

See also