Topic.CreateAsync Method (String, String, TopicSettings)

 

Asynchronously creates a Topic class with the specified path, connection string and settings.

Namespace:   Microsoft.WindowsAzure.Messaging
Assembly:  Microsoft.WindowsAzure.Messaging.Managed (in Microsoft.WindowsAzure.Messaging.Managed.dll)

Syntax

public static Task<Topic> CreateAsync(
    string path,
    string connectionString,
    TopicSettings settings
)
public:
static Task<Topic^>^ CreateAsync(
    String^ path,
    String^ connectionString,
    TopicSettings^ settings
)
static member CreateAsync : 
        path:string *
        connectionString:string *
        settings:TopicSettings -> Task<Topic>
Public Shared Function CreateAsync (
    path As String,
    connectionString As String,
    settings As TopicSettings
) As Task(Of Topic)

Parameters

Return Value

Type: System.Threading.Tasks.Task<Topic>

The created Topic class.

See Also

CreateAsync Overload
Topic Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top