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!

TypeDelegator.GetInterface

Returns a Type object representing a specified interface implemented by the current class.

[Visual Basic]
Overrides Public Function GetInterface( _
   ByVal name As String, _
   ByVal ignoreCase As Boolean _
) As Type
[C#]
public override Type GetInterface(
   string name,
   bool ignoreCase
);
[C++]
public: override Type* GetInterface(
   String* name,
   bool ignoreCase
);
[JScript]
public override function GetInterface(
   name : String,
   ignoreCase : Boolean
) : Type;

Parameters

name
The fully qualified name of the interface implemented by the current class.
ignoreCase
A flag indicating whether case is to be ignored (true) or considered (false)

Return Value

A Type object representing the interface implemented (directly or indirectly) by the current class with the fully qualified name matching the specified name. If no interface that matches name is found, null is returned.

Remarks

To be supplied

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace