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

Parses a single event add statement.

[Visual Basic]
Protected Sub ParseEventAdd( _
   ByVal target() As String, _
   ByVal eventName As String, _
   ByVal value As Object _
)
[C#]
protected void ParseEventAdd(
   string[] target,
   string eventName,
   object value
);
[C++]
protected: void ParseEventAdd(
   String* target[],
   String* eventName,
   Object* value
);
[JScript]
protected function ParseEventAdd(
   target : String[],
   eventName : String,
   value : Object
);

Parameters

target
Name of object that is having the event added to.
eventName
name of the event that is getting hooked.
value
Value/Expression that was passed into the AddOnXXX method invoke.

See Also

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