HostedEmailManager.BeginGetAllUnassignedAccounts Method (EventHandler<OperationInvokeEventArgs<EmailAccountInfo[]>>)
Asynchronous call to get all email accounts not assigned to any user.
Namespace: Microsoft.WindowsServerSolutions.HostedEmail
Assembly: Wssg.HostedEmailObjectModel (in Wssg.HostedEmailObjectModel.dll)
Syntax
public void BeginGetAllUnassignedAccounts(
EventHandler<OperationInvokeEventArgs<EmailAccountInfo[]>> completeHandler
)
public:
void BeginGetAllUnassignedAccounts(
EventHandler<OperationInvokeEventArgs<array<EmailAccountInfo^>^>^>^ completeHandler
)
Public Sub BeginGetAllUnassignedAccounts (
completeHandler As EventHandler(Of OperationInvokeEventArgs(Of EmailAccountInfo()))
)
Parameters
completeHandler
Type: System.EventHandler<OperationInvokeEventArgs<EmailAccountInfo[]>>Complete handler for the asynchronous call.
Remarks
The result of the method call is passed by the complete handler. The OperationInvokeError<T0>.Error indicates whether there was an exception thrown out during the operation. If this value is not null, the same exception will be thrown when accessing OperationInvokeEventArgs<T0>.Result.
OperationInvokeEventArgs<T0>.Result contains an array with all unassigned email accounts.
See Also
HostedEmailManager Class
Microsoft.WindowsServerSolutions.HostedEmail Namespace
Return to top