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

Adds an argument to the signature. Takes a Type and determines whether it is one of the primitive types or a more general class. In the former case, the method adds the appropriate short cut encoding, otherwise the method calculates the proper description for the type.

[Visual Basic]
Public Sub AddArgument( _
   ByVal clsArgument As Type _
)
[C#]
public void AddArgument(
   Type clsArgument
);
[C++]
public: void AddArgument(
   Type* clsArgument
);
[JScript]
public function AddArgument(
   clsArgument : Type
);

Parameters

clsArgument
The type of the argument.

Exceptions

Exception Type Condition
ArgumentException if the signature has already been finalized

See Also

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