ComponentRenameEventHandler Delegate
Assembly: System (in system.dll)
'Declaration <ComVisibleAttribute(True)> _ Public Delegate Sub ComponentRenameEventHandler ( _ sender As Object, _ e As ComponentRenameEventArgs _ ) 'Usage Dim instance As New ComponentRenameEventHandler(AddressOf HandlerMethod)
/** @delegate */ /** @attribute ComVisibleAttribute(true) */ public delegate void ComponentRenameEventHandler ( Object sender, ComponentRenameEventArgs e )
Not applicable.
Parameters
- sender
The source of the event.
- e
A ComponentRenameEventArgs that contains the event data.
When you create a ComponentRenameEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.
Note: |
|---|
| The HostProtectionAttribute attribute applied to this class has the following Resources property value: SharedState. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
The following example demonstrates registering a ComponentRenameEventHandler and handling the ComponentRename event.
Public Sub LinkComponentRenameEvent(ByVal changeService As IComponentChangeService) ' Registers an event handler for the ComponentRename event. AddHandler changeService.ComponentRename, AddressOf Me.OnComponentRename End Sub Private Sub OnComponentRename(ByVal sender As Object, ByVal e As ComponentRenameEventArgs) ' Displays component renamed information on the console. Console.WriteLine(("Type of the component that has been renamed: " + e.Component.GetType().FullName)) Console.WriteLine(("New name of the component that has been renamed: " + e.NewName)) Console.WriteLine(("Old name of the component that has been renamed: " + e.OldName)) End Sub
public void LinkComponentRenameEvent(IComponentChangeService changeService)
{
// Registers an event handler for the ComponentRename event.
changeService.add_ComponentRename(new ComponentRenameEventHandler(this.
OnComponentRename));
} //LinkComponentRenameEvent
private void OnComponentRename(Object sender, ComponentRenameEventArgs e)
{
// Displayss component renamed information on the console.
Console.WriteLine("Type of the component that has been renamed: "
+ e.get_Component().GetType().get_FullName());
Console.WriteLine("New name of the component that has been renamed: "
+ e.get_NewName());
Console.WriteLine("Old name of the component that has been renamed: "
+ e.get_OldName());
} //OnComponentRename
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: