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!

ComponentModelPersister.DoesHandlerExist

Gets whether or not a handler for the specified event descriptor exists in the code.

[Visual Basic]
Overridable Public Function DoesHandlerExist( _
   ByVal handler As String, _
   ByVal evevent As EventDescriptor _
) As Boolean
[C#]
public virtual bool DoesHandlerExist(
   string handler,
   EventDescriptor evevent
);
[C++]
public: virtual bool DoesHandlerExist(
   String* handler,
   EventDescriptor* evevent
);
[JScript]
public function DoesHandlerExist(
   handler : String,
   evevent : EventDescriptor
) : Boolean;

Parameters

handler
[To be supplied.]
evevent
[To be supplied.]

Return Value

true if the handler exists, otherwise false.

See Also

ComponentModelPersister Class | ComponentModelPersister Members | System.ComponentModel.Design Namespace