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 (Object, String)

Initializes an instance of the MulticastDelegate class. This constructor is called from the class generated by the compiler-generated code.

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

Parameters

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

Remarks

This must match the constructor in Delegate.

See Also

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