InterfaceMapping Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- 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. |