ResolveAccountEventHandler Delegate
Represents a method that will handle the AccountManager.ResolveAccount event.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
public delegate void ResolveAccountEventHandler(
object sender,
ResolveAccountEventArgs e
);
Parameters
Name | Type | Description |
---|---|---|
sender | Object | The event source. |
e | ResolveAccountEventArgs | A ResolveAccountEventArgs class instance that contains the event data. |
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