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!

IComponentChangeService ComponentRemoved Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the ComponentRemoved event.

[Visual Basic]
Private Sub IComponentChangeServiceName_ComponentRemoved( _
   ByVal sender As Object, _
   ByVal e As ComponentEventArgs _
)
[C#]
private void IComponentChangeServiceName_ComponentRemoved(
   object sender,
   ComponentEventArgs e
);
[C++]
private: void IComponentChangeServiceName_ComponentRemoved(
   Object* sender,
   ComponentEventArgs* e
);
[JScript]
private IComponentChangeServiceName_ComponentRemoved(
   sender : Object,
   e : ComponentEventArgs
);

Parameters

sender
The source of the event.
e
A ComponentEventArgs that contains the event data. The following ComponentEventArgs properties provide information specific to this event.
Property Description
Component
Gets or sets the component associated with the event.

Remarks

This event occurs during unload and when a component is deleted by the user. The event occurs before the site has been removed from the component.

See Also

IComponentChangeService Interface | IComponentChangeService MembersTopic | System.ComponentModel.Design Namespace