aspnet-devexpress-dot-web-03db0507.md
Represents a method that will handle the AccountManager.ResolveAccount event.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public delegate void ResolveAccountEventHandler(
object sender,
ResolveAccountEventArgs e
);
Public Delegate Sub ResolveAccountEventHandler(
sender As Object,
e As ResolveAccountEventArgs
)
| Name | Type | Description |
|---|---|---|
| sender | Object |
The event source.
| | e | ResolveAccountEventArgs |
A ResolveAccountEventArgs class instance that contains the event data.
|
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