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!

Marshal.GetTypeForITypeInfo

Creates a TypeInfo/Type marshaler and passes the provided ITypeInfo to the marshaler. The marshaler then delegates the calls on the Type object to the underlying ITypeInfo interface.

[Visual Basic]
Public Shared Function GetTypeForITypeInfo( _
   ByVal piTypeInfo As Integer _
) As Type
[C#]
public static Type GetTypeForITypeInfo(
   int piTypeInfo
);
[C++]
public: static Type* GetTypeForITypeInfo(
   int piTypeInfo
);
[JScript]
public static function GetTypeForITypeInfo(
   piTypeInfo : int
) : Type;

Parameters

piTypeInfo
The ITypeInfo interface to be marshaled.

See Also

Marshal Class | Marshal Members | System.Runtime.InteropServices Namespace