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.GetPropertySigHelper

Returns a signature helper for a property given the property'smodule, return type, and parameter types.

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

Parameters

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

Return Value

The SignatureHelper object for a property.

See Also

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