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!

EnumBuilder.GetInterfaceMap

This method will return an interface mapping for the interface requested.

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

Parameters

interfaceType
The Type of the interface for which the interface mapping is to be retrieved.

Return Value

The requested interface mapping.

Exceptions

Exception Type Condition
ArgumentException if the Type does not implement the interface.

See Also

EnumBuilder Class | EnumBuilder Members | System.Reflection.Emit Namespace