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, CallingConventions, Type)

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

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

Parameters

mod
The Module that contains the method for which the SignatureHelper is requested.
callingConvention
[To be supplied.]
returnType
[To be supplied.]

Return Value

The SignatureHelper object for a method.

See Also

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