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!

IExpando.AddMethod

Add the named method to the reflection object.

[Visual Basic]
Function AddMethod( _
   ByVal name As String, _
   ByVal method As Delegate _
) As MethodInfo
[C#]
MethodInfo AddMethod(
   string name,
   Delegate method
);
[C++]
MethodInfo* AddMethod(
   String* name,
   Delegate* method
) = 0;
[JScript]
function AddMethod(
   name : String,
   method : Delegate
) : MethodInfo;

Parameters

name
The name of the method.
method
[To be supplied.]

Return Value

A MethodInfo object representing the added method.

See Also

IExpando Interface | IExpando Members | System.Runtime.InteropServices.Expando Namespace