ResolveNameEventHandler Delegate
Assembly: System (in system.dll)
'Declaration Public Delegate Sub ResolveNameEventHandler ( _ sender As Object, _ e As ResolveNameEventArgs _ ) 'Usage Dim instance As New ResolveNameEventHandler(AddressOf HandlerMethod)
/** @delegate */ public delegate void ResolveNameEventHandler ( Object sender, ResolveNameEventArgs e )
Not applicable.
Parameters
- sender
The source of the event.
- e
A ResolveNameEventArgs that contains the event data.
This delegate is used by the IDesignerSerializationManager to resolve object names during serialization and deserialization.
When you create a ResolveNameEventHandler 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.
The following code example attaches a ResolveNameEventHandler to the ResolveName event of a specified IDesignerSerializationManager.
Public Sub LinkResolveNameEvent(ByVal serializationManager As IDesignerSerializationManager) ' Registers an event handler for the resolve name event. AddHandler serializationManager.ResolveName, AddressOf Me.OnResolveName End Sub Private Sub OnResolveName(ByVal sender As Object, ByVal e As ResolveNameEventArgs) ' Displays ResolveName event information on the Console. Console.WriteLine(("Name of the name to resolve: " + e.Name)) Console.WriteLine(("ToString output of the object that no name was resolved for: " + e.Value.ToString())) End Sub
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.