ComponentRenameEventHandler 代理人
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ComponentRename イベントを処理するメソッドを表します。
public delegate void ComponentRenameEventHandler(System::Object ^ sender, ComponentRenameEventArgs ^ e);
public delegate void ComponentRenameEventHandler(object sender, ComponentRenameEventArgs e);
public delegate void ComponentRenameEventHandler(object? sender, ComponentRenameEventArgs e);
[System.Runtime.InteropServices.ComVisible(true)]
public delegate void ComponentRenameEventHandler(object sender, ComponentRenameEventArgs e);
type ComponentRenameEventHandler = delegate of obj * ComponentRenameEventArgs -> unit
[<System.Runtime.InteropServices.ComVisible(true)>]
type ComponentRenameEventHandler = delegate of obj * ComponentRenameEventArgs -> unit
Public Delegate Sub ComponentRenameEventHandler(sender As Object, e As ComponentRenameEventArgs)
- sender
- Object
イベントのソース。
イベント データを格納している ComponentRenameEventArgs。
- 属性
次の例では、 を登録し、 イベントを ComponentRenameEventHandler 処理する方法を ComponentRename 示します。
public:
void LinkComponentRenameEvent( IComponentChangeService^ changeService )
{
// Registers an event handler for the ComponentRename event.
changeService->ComponentRename += gcnew ComponentRenameEventHandler(
this, &ComponentRenameEventHandlerExample::OnComponentRename );
}
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->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 );
}
public void LinkComponentRenameEvent(IComponentChangeService changeService)
{
// Registers an event handler for the ComponentRename event.
changeService.ComponentRename += new ComponentRenameEventHandler(this.OnComponentRename);
}
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.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);
}
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
ComponentRenameEventHandler デリゲートを作成する場合は、イベントを処理するメソッドを指定します。 イベント ハンドラーにイベントを関連付けるには、イベントにデリゲートのインスタンスを追加します。 イベント ハンドラーは、デリゲートを削除しない限り、イベントが発生するたびに呼び出されます。 イベント ハンドラー デリゲートの詳細については、「イベントの 処理と発生」を参照してください。
Get |
指定したデリゲートによって表されるメソッドを表すオブジェクトを取得します。 |
製品 | バージョン |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
.NET に関するフィードバック
.NET はオープンソース プロジェクトです。 フィードバックを提供するにはリンクを選択します。