MessagingFactory.BeginCreate Method (String, MessagingFactorySettings, AsyncCallback, Object)
Begins an asynchronous request to create a MessagingFactory object.
Namespace: Microsoft.ServiceBus.Messaging
Assembly: Microsoft.ServiceBus (in Microsoft.ServiceBus.dll)
public static IAsyncResult BeginCreate( string address, MessagingFactorySettings factorySettings, AsyncCallback callback, Object state )
Parameters
- address
- Type: System.String
The namespace base address.
- factorySettings
- Type: Microsoft.ServiceBus.Messaging.MessagingFactorySettings
The MessagingFactory settings.
- callback
- Type: System.AsyncCallback
An AsyncCallback delegate that references the method to invoke when the operation is complete.
- state
- Type: System.Object
A user-provided object that contains information about the create operation. This object is passed to the EndCreate(IAsyncResult) delegate when the operation is complete.
Return Value
Type: System.IAsyncResultAn IAsyncResult object that references the asynchronous create a MessagingFactory operation.
| Exception | Condition |
|---|---|
| UriFormatException | address is empty or null. |
| ArgumentNullException | credential is null. |
| ArgumentException | address contains a path appended to the full address of the service namespace. |
This is an asynchronous version of the Create(String, ServiceBusMessagingFactorySettings) method.