ResolveAccountEventHandler Delegate
In This Article
Represents a method that will handle the AccountManager.ResolveAccount event.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public delegate void ResolveAccountEventHandler(
object sender,
ResolveAccountEventArgs e
);
#Parameters
Name | Type | Description |
---|---|---|
sender | Object | The event source. |
e | Resolve |
A Resolve |
#Remarks
When you create a ResolveAccountEventHandler delegate, you identify the method that will handle the corresponding event. To associate an 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.
See Also