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!

MulticastDelegate Constructor (Type, String)

Initializes an instance of the MulticastDelegate class. This constructor is called from a class to generate a delegate based upon a static method name and the Type object for the class defining the method.

[Visual Basic]
Overloads Protected Sub New( _
   ByVal target As Type, _
   ByVal method As String _
)
[C#]
protected MulticastDelegate(
   Type target,
   string method
);
[C++]
protected: MulticastDelegate(
   Type* target,
   String* method
);
[JScript]
protected function MulticastDelegate(
   target : Type,
   method : String
);

Parameters

target
the Type object that represents the class that the specified method is defined on.
method
the name of the static method for which to create a delegate.

See Also

MulticastDelegate Class | MulticastDelegate Members | System Namespace | MulticastDelegate Constructor Overload List