NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Type.GetInterfaceMap

When implemented by a derived class, returns an interface mapping for the specified interface type.

[Visual Basic]
Overridable Public Function GetInterfaceMap( _
   ByVal interfaceType As Type _
) As InterfaceMapping
[C#]
public virtual InterfaceMapping GetInterfaceMap(
   Type interfaceType
);
[C++]
public: virtual InterfaceMapping GetInterfaceMap(
   Type* interfaceType
);
[JScript]
public function GetInterfaceMap(
   interfaceType : Type
) : InterfaceMapping;

Parameters

interfaceType
The Type of the interface to retrieve a mapping of.

Return Value

An InterfaceMapping object representing the interface mapping for interfaceType.

Remarks

Abstract. This method must be implemented by a derived class.The interface map denotes how an interface is mapped into the actual methods on a class that implements that interface.

See Also

Type Class | Type Members | System Namespace | InterfaceMapping