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!

SignatureHelper.GetMethodSigHelper (Module, Type, Type[])

Returns a signature helper for a method given the method's module, calling convention, return type, and parameter types.

[Visual Basic]
Overloads Public Shared Function GetMethodSigHelper( _
   ByVal mod As Module, _
   ByVal returnType As Type, _
   ByVal parameterTypes() As Type _
) As SignatureHelper
[C#]
public static SignatureHelper GetMethodSigHelper(
   Module mod,
   Type returnType,
   Type[] parameterTypes
);
[C++]
public: static SignatureHelper* GetMethodSigHelper(
   Module* mod,
   Type* returnType,
   Type* parameterTypes[]
);
[JScript]
public static function GetMethodSigHelper(
   mod : Module,
   returnType : Type,
   parameterTypes : Type[]
) : SignatureHelper;

Parameters

mod
The Module that contains the method for which the SignatureHelper is requested.
returnType
The return type of the method.
parameterTypes
The types of the parameters of the method.

Return Value

The SignatureHelper object for a method.

See Also

SignatureHelper Class | SignatureHelper Members | System.Reflection.Emit Namespace | SignatureHelper.GetMethodSigHelper Overload List