Services/Microsoft.WindowsAzure.Management.ServiceBus.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.WindowsAzure.Management.ServiceBus</name>
    </assembly>
    <members>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus namespaces.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.CheckAvailabilityAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Checks the availability of the given service namespace across all
            Windows Azure subscriptions. This is useful because the domain
            name is created based on the service namespace name. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj870968.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a query for the availability status of a namespace
            name.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.CreateAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='region'>
            The namespace region.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.CreateAuthorizationRuleAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule,System.Threading.CancellationToken)">
            <summary>
            The create namespace authorization rule operation creates an
            authorization rule for a namespace
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='rule'>
            The shared access authorization rule.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.CreateNamespaceAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters,System.Threading.CancellationToken)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='namespaceEntity'>
            The service bus namespace.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.DeleteAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes an existing namespace. This operation also removes all
            associated entities including queues, topics, relay points, and
            messages stored under the namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856296.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.DeleteAuthorizationRuleAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The delete namespace authorization rule operation deletes an
            authorization rule for a namespace
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='ruleName'>
            The rule name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.GetAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Returns the description for the specified namespace. (see
            http://msdn.microsoft.com/library/azure/dn140232.aspx for more
            information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.GetAuthorizationRuleAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The get authorization rule operation gets an authorization rule for
            a namespace by name.
            </summary>
            <param name='namespaceName'>
            The namespace to get the authorization rule for.
            </param>
            <param name='entityName'>
            The entity name to get the authorization rule for.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.GetNamespaceDescriptionAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            The namespace description is an XML AtomPub document that defines
            the desired semantics for a service namespace. The namespace
            description contains the following properties. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.ListAsync(System.Threading.CancellationToken)">
            <summary>
            Lists the available namespaces. (see
            http://msdn.microsoft.com/en-us/library/azure/hh780759.aspx for
            more information)
            </summary>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to the request for a listing of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.ListAuthorizationRulesAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            The get authorization rules operation gets the authorization rules
            for a namespace.
            </summary>
            <param name='namespaceName'>
            The namespace to get the authorization rule for.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of authorization rules.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.UpdateAuthorizationRuleAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule,System.Threading.CancellationToken)">
            <summary>
            The update authorization rule operation updates an authorization
            rule for a namespace.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='rule'>
            Updated access authorization rule.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus notification hubs.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.DeleteAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes a notification hub associated with a namespace.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='notificationHubName'>
            The notification hub name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.GetAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='notificationHubName'>
            The notification hub name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='notificationHubName'>
            The notification hub name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.ListAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus queues.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.CreateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters,System.Threading.CancellationToken)">
            <summary>
            Creates a new queue. Once created, this queue's resource manifest
            is immutable. This operation is idempotent. Repeating the create
            call, after a queue with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856295.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='queue'>
            The service bus queue.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.DeleteAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes an existing queue. This operation will also remove all
            associated state including messages in the queue. (see
            http://msdn.microsoft.com/en-us/library/hh780747.aspx for more
            information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='queueName'>
            The queue name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.GetAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The queue description is an XML AtomPub document that defines the
            desired semantics for a subscription. The queue description
            contains the following properties. For more information, see the
            QueueDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='queueName'>
            The queue name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Gets the set of connection strings for a queue.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='queueName'>
            The queue name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.ListAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Enumerates the queues in the service namespace. The result is
            returned in pages, each containing up to 100 queues. If the
            namespace contains more than 100 queues, a feed is returned that
            contains the first page and a next link with the URI to view the
            next page of data. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780759.asp
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of queues.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.UpdateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue,System.Threading.CancellationToken)">
            <summary>
            Updates the queue description and makes a call to update
            corresponding DB entries. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856305.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='queue'>
            The service bus queue.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.IRelayOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus relays.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IRelayOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Gets the set of connection strings for a relay.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='relayName'>
            The relay name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.ApiVersion">
            <summary>
            Gets the API version.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.BaseUri">
            <summary>
            Gets the URI used as the base for all cloud service requests.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.Credentials">
            <summary>
            Gets subscription credentials which uniquely identify Microsoft
            Azure subscription. The subscription ID forms part of the URI for
            every service call.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.LongRunningOperationInitialTimeout">
            <summary>
            Gets or sets the initial timeout for Long Running Operations.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.LongRunningOperationRetryTimeout">
            <summary>
            Gets or sets the retry timeout for Long Running Operations.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.Namespaces">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus namespaces.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.NotificationHubs">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus notification hubs.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.Queues">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus queues.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.Relays">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus relays.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.Topics">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus topics for a namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.GetOperationStatusAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            The Get Operation Status operation returns the status of
            thespecified operation. After calling an asynchronous operation,
            you can call Get Operation Status to determine whether the
            operation has succeeded, failed, or is still in progress. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/ee460783.aspx
            for more information)
            </summary>
            <param name='requestId'>
            The request ID for the request you wish to track. The request ID is
            returned in the x-ms-request-id response header for every request.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response body contains the status of the specified asynchronous
            operation, indicating whether it has succeeded, is inprogress, or
            has failed. Note that this status is distinct from the HTTP status
            code returned for the Get Operation Status operation itself. If
            the asynchronous operation succeeded, the response body includes
            the HTTP status code for the successful request. If the
            asynchronous operation failed, the response body includes the HTTP
            status code for the failed request, and also includes error
            information regarding the failure.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.GetServiceBusRegionsAsync(System.Threading.CancellationToken)">
            <summary>
            Retrieves the list of regions that support the creation and
            management of Service Bus service namespaces. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj860465.aspx
            for more information)
            </summary>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of regions.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus topics for a namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.CreateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic,System.Threading.CancellationToken)">
            <summary>
            Creates a new topic. Once created, this topic resource manifest is
            immutable. This operation is not idempotent. Repeating the create
            call, after a topic with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780728.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='topic'>
            The Service Bus topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.DeleteAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes an existing topic. This operation will also remove all
            associated state including associated subscriptions. (see
            http://msdn.microsoft.com/en-us/library/hh780721.aspx for more
            information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='topicName'>
            The topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.GetAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The topic description is an XML AtomPub document that defines the
            desired semantics for a topic. The topic description contains the
            following properties. For more information, see the
            TopicDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='topicName'>
            The topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Gets the set of connection strings for a topic.
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='topicName'>
            The topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.ListAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Enumerates the topics in the service namespace. An empty feed is
            returned if no topic exists in the service namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780744.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of topics.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.UpdateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic,System.Threading.CancellationToken)">
            <summary>
            Updates a topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj839740.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            The namespace name.
            </param>
            <param name='topic'>
            The Service Bus topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.AccessRight">
            <summary>
            An access right.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.CheckNamespaceAvailabilityResponse">
            <summary>
            The response to a query for the availability status of a namespace name.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CheckNamespaceAvailabilityResponse.IsAvailable">
            <summary>
            Optional. Whether or not the namespace is available.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CheckNamespaceAvailabilityResponse.ReasonDetails">
            <summary>
            Optional. The reason the namespace is unavailable.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.CheckNamespaceAvailabilityResponse.#ctor">
            <summary>
            Initializes a new instance of the
            CheckNamespaceAvailabilityResponse class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails">
            <summary>
            Statistics about the current usage of a service bus entity.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails.ActiveMessageCount">
            <summary>
            Optional. The current number of active messages.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails.DeadLetterMessageCount">
            <summary>
            Optional. The current number of dead letters.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails.ScheduledMessageCount">
            <summary>
            Optional. The current number of scheduled messages.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails.TransferDeadLetterMessageCount">
            <summary>
            Optional. The current number of transfer dead letters.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails.TransferMessageCount">
            <summary>
            Optional. The current number of transfer messages.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.CountDetails.#ctor">
            <summary>
            Initializes a new instance of the CountDetails class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription">
            <summary>
            A response to a request for a particular namespace.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription.AuthorizationType">
            <summary>
            Optional. The authorization type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription.ConnectionString">
            <summary>
            Optional. Namespace connection string. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription.KeyName">
            <summary>
            Optional. Default ACS access key to generate the access token.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription.Rights">
            <summary>
            Optional. The rights associated with a namespace.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription.SecondaryConnectionString">
            <summary>
            Optional. Secondary namespace connection string.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceDescription.#ctor">
            <summary>
            Initializes a new instance of the NamespaceDescription class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRuleResponse">
            <summary>
            A response to a request for a particular authorization rule.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRuleResponse.AuthorizationRule">
            <summary>
            Optional. The requested authorization rule.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRuleResponse.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusAuthorizationRuleResponse class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRulesResponse">
            <summary>
            A response to a request for a list of authorization rules.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRulesResponse.AuthorizationRules">
            <summary>
            Optional. The list of authorization rules.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRulesResponse.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusAuthorizationRulesResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRulesResponse.GetEnumerator">
            <summary>
            Gets the sequence of AuthorizationRules.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusAuthorizationRulesResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of AuthorizationRules.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetail">
            <summary>
            A connection string for a service bus entity.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetail.AuthorizationType">
            <summary>
            Optional. The type of authorization for the connection to the
            entity.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetail.ConnectionString">
            <summary>
            Optional. The connection string to the entity.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetail.KeyName">
            <summary>
            Optional. The name of the key used in the connection.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetail.Rights">
            <summary>
            Optional. The rights connections to the entity via the connection
            string will have.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetail.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusConnectionDetail class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetailsResponse">
            <summary>
            The set of connection details for a service bus entity.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetailsResponse.ConnectionDetails">
            <summary>
            Optional. The set of connection details for a service bus entitiy.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetailsResponse.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusConnectionDetailsResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetailsResponse.GetEnumerator">
            <summary>
            Gets the sequence of ConnectionDetails.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusConnectionDetailsResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of ConnectionDetails.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusLocation">
            <summary>
            A region code and name pairing.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusLocation.Code">
            <summary>
            Optional. The region code.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusLocation.FullName">
            <summary>
            Optional. The fulle name of the region.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusLocation.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusLocation class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace">
            <summary>
            A service bus namespace.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.AcsManagementEndpoint">
            <summary>
            Optional. ACS endpoint you can use to obtain access tokens. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.CreateACSNamespace">
            <summary>
            Optional. Whether or not ACS authentication is needed for
            ServiceBus.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.CreatedAt">
            <summary>
            Optional. The time the namespace was created.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.Enabled">
            <summary>
            Optional. Whether or not the namespace is currently enabled.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.Name">
            <summary>
            Optional. The name of the namespace.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.NamespaceType">
            <summary>
            Optional. Gets or sets the namespace type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.Region">
            <summary>
            Optional. Specifies the targeted region in which the namespace
            should be created. It can be any of the following values: Central
            US, East US, East US 2, North Central US, South Central US, West
            US, North Europe, West Europe, East Asia, Southeast Asia, Brazil
            South, Canada Central, Canada East, Japan East, Japan West (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.ServiceBusEndpoint">
            <summary>
            Optional. Endpoint you can use to perform messaging or relay
            operations. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.Status">
            <summary>
            Optional. Status of the namespace. It can be any of these values:1
            = Created/Active2 = Creating3 = Suspended4 = Deleting (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.SubscriptionId">
            <summary>
            Optional. The Id of the Azure subscription associated with the
            namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespace.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusNamespace class.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters.CreateACSNamespace">
            <summary>
            Optional. Whether or not ACS authentication is needed for
            ServiceBus.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters.NamespaceType">
            <summary>
            Required. Gets or sets the namespace type.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters.Region">
            <summary>
            Required. The namespace region.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusNamespaceCreateParameters class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters.#ctor(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.NamespaceType)">
            <summary>
            Initializes a new instance of the
            ServiceBusNamespaceCreateParameters class with required arguments.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceDescriptionResponse">
            <summary>
            A response to a request for a list of namespaces.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceDescriptionResponse.NamespaceDescriptions">
            <summary>
            Optional. The descriptions for the namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceDescriptionResponse.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusNamespaceDescriptionResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceDescriptionResponse.GetEnumerator">
            <summary>
            Gets the sequence of NamespaceDescriptions.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceDescriptionResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of NamespaceDescriptions.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceResponse">
            <summary>
            The response to a request for a particular namespace.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceResponse.Namespace">
            <summary>
            Optional. The namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusNamespaceResponse class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespacesResponse">
            <summary>
            The response to the request for a listing of namespaces.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespacesResponse.Namespaces">
            <summary>
            Optional. The list of namespaces.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespacesResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusNamespacesResponse
            class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespacesResponse.GetEnumerator">
            <summary>
            Gets the sequence of Namespaces.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespacesResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of Namespaces.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHub.AuthorizationRules">
            <summary>
            Optional.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHub.Name">
            <summary>
            Optional.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHub.RegistrationTtl">
            <summary>
            Optional.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHub.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusNotificationHub class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubResponse">
            <summary>
            A standard service response including an HTTP status code and request
            ID.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubResponse.NotificationHub">
            <summary>
            Optional.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusNotificationHubResponse
            class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubsResponse">
            <summary>
            A standard service response including an HTTP status code and request
            ID.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubsResponse.NotificationHubs">
            <summary>
            Optional.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubsResponse.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusNotificationHubsResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubsResponse.GetEnumerator">
            <summary>
            Gets the sequence of NotificationHubs.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNotificationHubsResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of NotificationHubs.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.AccessedAt">
            <summary>
            Optional. The time the queue was last accessed.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.AuthorizationRules">
            <summary>
            Optional. Gets the authorization rules for the description. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.AutoDeleteOnIdle">
            <summary>
            Optional. Implemented.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.CountDetails">
            <summary>
            Optional. Current queue statistics.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.CreatedAt">
            <summary>
            Optional. The time the queue was created at.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.DeadLetteringOnMessageExpiration">
            <summary>
            Optional. This field controls how the Service Bus handles a message
            whose TTL has expired. If it is enabled and a message expires, the
            Service Bus moves the message from the queue into the queue's
            dead-letter sub-queue. If disabled, message will be permanently
            deleted from the queue. Settable only at queue creation time.*
            Default: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.DefaultMessageTimeToLive">
            <summary>
            Optional. Depending on whether DeadLettering is enabled, a message
            is automatically moved to the DeadLetterQueue or deleted if it has
            been stored in the queue for longer than the specified time. This
            value is overwritten by a TTL specified on the message if and only
            if the message TTL is smaller than the TTL set on the queue. This
            value is immutable after the Queue has been created:* Range: 1
            second - TimeSpan.MaxValue* Default: TimeSpan.MaxValue (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.DuplicateDetectionHistoryTimeWindow">
            <summary>
            Optional. Specifies the time span during which the Service Bus
            detects message duplication:* Range: 1 second - 7 days* Default:
            10 minutes (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.EnableBatchedOperations">
            <summary>
            Optional. Enables or disables service side batching behavior when
            performing operations for the specific queue. When enabled,
            service bus will collect/batch multiple operations to the backend
            to be more connection efficient. If user wants lower operation
            latency then they can disable this feature. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.EntityAvailabilityStatus">
            <summary>
            Optional. The current availability status of the queue.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.IsAnonymousAccessible">
            <summary>
            Optional. Gets whether anonymous access is allowed. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.LockDuration">
            <summary>
            Optional. Determines the amount of time in seconds in which a
            message should be locked for processing by a receiver. After this
            period, the message is unlocked and available for consumption by
            the next receiver. Settable only at queue creation time:* Range: 0
            - 5 minutes. 0 means that the message is not locked* Default: 30
            seconds (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.MaxDeliveryCount">
            <summary>
            Optional. The maximum number of times a message SB will try to
            deliver before being dead lettered or discarded. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.MaxSizeInMegabytes">
            <summary>
            Optional. Specifies the maximum queue size in megabytes. Any
            attempt to enqueue a message that will cause the queue to exceed
            this value will fail. You can only set this parameter at queue
            creation time using the following values: * Range: 1 - 1024 (valid
            values are 1024, 2048, 3072, 4096, 5120) * Default: 1*1024 (valid
            values are 1024, 2048, 3072, 4096, 5120) (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.MessageCount">
            <summary>
            Optional. Displays the number of messages currently in the queue.
            (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.Name">
            <summary>
            Optional. The name of the queue.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.RequiresDuplicateDetection">
            <summary>
            Optional. Settable only at queue creation time.* Default for
            durable queue: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.RequiresSession">
            <summary>
            Optional. Settable only at queue creation time. If set to true, the
            queue will be session-aware and only SessionReceiver will be
            supported. Session-aware queues are not supported through REST.*
            Default for durable queue: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.SizeInBytes">
            <summary>
            Optional. Reflects the actual bytes that messages in the queue
            currently occupy toward the queue's quota.* Range: 0
            -MaxTopicSizeinMegaBytes (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.Status">
            <summary>
            Optional. Gets or sets the current status of the queue (enabled or
            disabled). When a queue is disabled, that queue cannot send or
            receive messages. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.SupportOrdering">
            <summary>
            Optional. Gets or sets whether the queue supports ordering. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.UpdatedAt">
            <summary>
            Optional. The time the queue was last updated.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusQueue class.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.AuthorizationRules">
            <summary>
            Optional. Gets the authorization rules for the description. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.AutoDeleteOnIdle">
            <summary>
            Optional. Implemented.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.CountDetails">
            <summary>
            Optional. Current queue statistics.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.DeadLetteringOnMessageExpiration">
            <summary>
            Optional. This field controls how the Service Bus handles a message
            whose TTL has expired. If it is enabled and a message expires, the
            Service Bus moves the message from the queue into the queue's
            dead-letter sub-queue. If disabled, message will be permanently
            deleted from the queue. Settable only at queue creation time.*
            Default: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.DefaultMessageTimeToLive">
            <summary>
            Optional. Depending on whether DeadLettering is enabled, a message
            is automatically moved to the DeadLetterQueue or deleted if it has
            been stored in the queue for longer than the specified time. This
            value is overwritten by a TTL specified on the message if and only
            if the message TTL is smaller than the TTL set on the queue. This
            value is immutable after the Queue has been created:* Range: 1
            second - TimeSpan.MaxValue* Default: TimeSpan.MaxValue (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.DuplicateDetectionHistoryTimeWindow">
            <summary>
            Optional. Specifies the time span during which the Service Bus
            detects message duplication:* Range: 1 second - 7 days* Default:
            10 minutes (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.EnableBatchedOperations">
            <summary>
            Optional. Enables or disables service side batching behavior when
            performing operations for the specific queue. When enabled,
            service bus will collect/batch multiple operations to the backend
            to be more connection efficient. If user wants lower operation
            latency then they can disable this feature. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.EntityAvailabilityStatus">
            <summary>
            Optional. The current availability status of the queue.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.IsAnonymousAccessible">
            <summary>
            Optional. Gets whether anonymous access is allowed. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.LockDuration">
            <summary>
            Optional. Determines the amount of time in seconds in which a
            message should be locked for processing by a receiver. After this
            period, the message is unlocked and available for consumption by
            the next receiver. Settable only at queue creation time:* Range: 0
            - 5 minutes. 0 means that the message is not locked* Default: 30
            seconds (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.MaxDeliveryCount">
            <summary>
            Optional. The maximum number of times a message SB will try to
            deliver before being dead lettered or discarded. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.MaxSizeInMegabytes">
            <summary>
            Optional. Specifies the maximum queue size in megabytes. Any
            attempt to enqueue a message that will cause the queue to exceed
            this value will fail. You can only set this parameter at queue
            creation time using the following values: * Range: 1 - 1024 (valid
            values are 1024, 2048, 3072, 4096, 5120) * Default: 1*1024 (valid
            values are 1024, 2048, 3072, 4096, 5120) (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.MessageCount">
            <summary>
            Optional. Displays the number of messages currently in the queue.
            (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.Name">
            <summary>
            Required. The name of the queue.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.RequiresDuplicateDetection">
            <summary>
            Optional. Settable only at queue creation time.* Default for
            durable queue: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.RequiresSession">
            <summary>
            Optional. Settable only at queue creation time. If set to true, the
            queue will be session-aware and only SessionReceiver will be
            supported. Session-aware queues are not supported through REST.*
            Default for durable queue: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.SizeInBytes">
            <summary>
            Optional. Reflects the actual bytes that messages in the queue
            currently occupy toward the queue's quota.* Range: 0
            -MaxTopicSizeinMegaBytes (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.Status">
            <summary>
            Optional. Gets or sets the current status of the queue (enabled or
            disabled). When a queue is disabled, that queue cannot send or
            receive messages. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.SupportOrdering">
            <summary>
            Optional. Gets or sets whether the queue supports ordering. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusQueueCreateParameters
            class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters.#ctor(System.String)">
            <summary>
            Initializes a new instance of the ServiceBusQueueCreateParameters
            class with required arguments.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueResponse">
            <summary>
            A response to a request for a particular queue.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueResponse.Name">
            <summary>
            Optional. The name of the queue.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueResponse.Queue">
            <summary>
            Optional. The requested queue.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusQueueResponse class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueuesResponse">
            <summary>
            A response to a request for a list of queues.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueuesResponse.Queues">
            <summary>
            Optional. The listing of queues.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueuesResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusQueuesResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueuesResponse.GetEnumerator">
            <summary>
            Gets the sequence of Queues.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueuesResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of Queues.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusRegionsResponse">
            <summary>
            A response to a request for a list of regions.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusRegionsResponse.Regions">
            <summary>
            Optional. The available regions.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusRegionsResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusRegionsResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusRegionsResponse.GetEnumerator">
            <summary>
            Gets the sequence of Regions.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusRegionsResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of Regions.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule">
            <summary>
            An authorization rule.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.ClaimType">
            <summary>
            Optional. The type of the claim.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.ClaimValue">
            <summary>
            Optional. The value of the claim.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.CreatedTime">
            <summary>
            Optional. The time at which the authorization rule was created.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.KeyName">
            <summary>
            Optional. The name of the key that was used.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.ModifiedTime">
            <summary>
            Optional. The most recent time the rule was updated.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.PrimaryKey">
            <summary>
            Optional. The primary key that was used.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.Revision">
            <summary>
            Optional. The revision number for the rule.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.Rights">
            <summary>
            Optional. The rights associated with the rule.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.SecondaryKey">
            <summary>
            Optional. The secondary key that was used.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule.#ctor">
            <summary>
            Initializes a new instance of the
            ServiceBusSharedAccessAuthorizationRule class.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.AccessedAt">
            <summary>
            Optional. The time the queue was last accessed.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.AuthorizationRules">
            <summary>
            Optional. Gets the authorization rules for the description. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.AutoDeleteOnIdle">
            <summary>
            Optional. Implemented.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.CountDetails">
            <summary>
            Optional. Current queue statistics.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.CreatedAt">
            <summary>
            Optional. The time the queue was created at.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.DefaultMessageTimeToLive">
            <summary>
            Optional. Determines how long a message lives in the associated
            subscriptions. Subscriptions inherit the TTL from the topic unless
            they are created explicitly with a smaller TTL. Based on whether
            dead-lettering is enabled, a message whose TTL has expired will
            either be moved to the subscription's associated DeadLtterQueue or
            will be permanently deleted. The following values are settable at
            topic creation time:* Range: 1 second - TimeSpan.MaxValue*
            Default: TimeSpan.MaxValue (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj839740.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.DuplicateDetectionHistoryTimeWindow">
            <summary>
            Optional. Specifies the time span during which the Service Bus will
            detect message duplication.* Range: 1 second - 7 days* Default: 10
            minutes (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.EnableBatchedOperations">
            <summary>
            Optional. Enables or disables service side batching behavior when
            performing operations for the specific queue. When enabled,
            service bus will collect/batch multiple operations to the backend
            to be more connection efficient. If user wants lower operation
            latency then they can disable this feature. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.EntityAvailabilityStatus">
            <summary>
            Optional. The current availability status of the topic.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.FilteringMessagesBeforePublishing">
            <summary>
            Optional. Gets or sets whether messages should be filtered before
            publishing. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.IsAnonymousAccessible">
            <summary>
            Optional. Gets whether anonymous access is allowed. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.MaxSizeInMegabytes">
            <summary>
            Optional. Specifies the maximum topic size in megabytes. Any
            attempt to enqueue a message that will cause the topic to exceed
            this value will fail. All messages that are stored in the topic or
            any of its subscriptions count towards this value. Multiple copies
            of a message that reside in one or multiple subscriptions count as
            a single messages. For example, if message m exists once in
            subscription s1 and twice in subscription s2, m is counted as a
            single message. You can only set this parameter at topic creation
            time using the following values:* Range: 1 - 5*1024 MB* Default:
            1*1024 (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.Name">
            <summary>
            Optional. The name of the topic.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.RequiresDuplicateDetection">
            <summary>
            Optional. If enabled, the topic will detect duplicate messages
            within the time span specified by the
            DuplicateDetectionHistoryTimeWindow property. Settable only at
            topic creation time.* Default: false (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.SizeInBytes">
            <summary>
            Optional. Reflects the actual bytes toward the topic quota that
            messages in the topic currently occupy. (read-only)* Range: 0
            -MaxTopicSizeinMegaBytes (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.Status">
            <summary>
            Optional. Gets or sets the current status of the topic (enabled or
            disabled). When a topic is disabled, that topic cannot send or
            receive messages. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.SubscriptionCount">
            <summary>
            Optional. The current number of subscriptions to the topic.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.SupportOrdering">
            <summary>
            Optional. Gets or sets whether the topics can be ordered. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.UpdatedAt">
            <summary>
            Optional. The time the queue was last updated.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusTopic class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicResponse">
            <summary>
            A response to a request for a particular topic.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicResponse.Topic">
            <summary>
            Optional. The requested topic.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusTopicResponse class.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicsResponse">
            <summary>
            A response to a request for a list of topics.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicsResponse.Topics">
            <summary>
            Optional. The list of topics.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicsResponse.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusTopicsResponse class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicsResponse.GetEnumerator">
            <summary>
            Gets the sequence of Topics.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopicsResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Gets the sequence of Topics.
            </summary>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus namespaces.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.#ctor(Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient)">
            <summary>
            Initializes a new instance of the NamespaceOperations class.
            </summary>
            <param name='client'>
            Reference to the service client.
            </param>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.Client">
            <summary>
            Gets a reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.CheckAvailabilityAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Checks the availability of the given service namespace across all
            Windows Azure subscriptions. This is useful because the domain
            name is created based on the service namespace name. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj870968.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a query for the availability status of a namespace
            name.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.CreateAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='region'>
            Optional. The namespace region.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.CreateAuthorizationRuleAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule,System.Threading.CancellationToken)">
            <summary>
            The create namespace authorization rule operation creates an
            authorization rule for a namespace
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='rule'>
            Required. The shared access authorization rule.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.CreateNamespaceAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters,System.Threading.CancellationToken)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='namespaceEntity'>
            Required. The service bus namespace.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.DeleteAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes an existing namespace. This operation also removes all
            associated entities including queues, topics, relay points, and
            messages stored under the namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856296.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.DeleteAuthorizationRuleAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The delete namespace authorization rule operation deletes an
            authorization rule for a namespace
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='ruleName'>
            Required. The rule name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.GetAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Returns the description for the specified namespace. (see
            http://msdn.microsoft.com/library/azure/dn140232.aspx for more
            information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.GetAuthorizationRuleAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The get authorization rule operation gets an authorization rule for
            a namespace by name.
            </summary>
            <param name='namespaceName'>
            Required. The namespace to get the authorization rule for.
            </param>
            <param name='entityName'>
            Required. The entity name to get the authorization rule for.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.GetNamespaceDescriptionAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            The namespace description is an XML AtomPub document that defines
            the desired semantics for a service namespace. The namespace
            description contains the following properties. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.ListAsync(System.Threading.CancellationToken)">
            <summary>
            Lists the available namespaces. (see
            http://msdn.microsoft.com/en-us/library/azure/hh780759.aspx for
            more information)
            </summary>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response to the request for a listing of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.ListAuthorizationRulesAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            The get authorization rules operation gets the authorization rules
            for a namespace.
            </summary>
            <param name='namespaceName'>
            Required. The namespace to get the authorization rule for.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of authorization rules.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperations.UpdateAuthorizationRuleAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule,System.Threading.CancellationToken)">
            <summary>
            The update authorization rule operation updates an authorization
            rule for a namespace.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='rule'>
            Optional. Updated access authorization rule.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CheckAvailability(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            Checks the availability of the given service namespace across all
            Windows Azure subscriptions. This is useful because the domain
            name is created based on the service namespace name. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj870968.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            The response to a query for the availability status of a namespace
            name.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CheckAvailabilityAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            Checks the availability of the given service namespace across all
            Windows Azure subscriptions. This is useful because the domain
            name is created based on the service namespace name. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj870968.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            The response to a query for the availability status of a namespace
            name.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.Create(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,System.String)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='region'>
            Optional. The namespace region.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CreateAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,System.String)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='region'>
            Optional. The namespace region.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CreateAuthorizationRule(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule)">
            <summary>
            The create namespace authorization rule operation creates an
            authorization rule for a namespace
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='rule'>
            Required. The shared access authorization rule.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CreateAuthorizationRuleAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule)">
            <summary>
            The create namespace authorization rule operation creates an
            authorization rule for a namespace
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='rule'>
            Required. The shared access authorization rule.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CreateNamespace(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='namespaceEntity'>
            Required. The service bus namespace.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.CreateNamespaceAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusNamespaceCreateParameters)">
            <summary>
            Creates a new service namespace. Once created, this namespace's
            resource manifest is immutable. This operation is idempotent.
            (see http://msdn.microsoft.com/en-us/library/windowsazure/jj856303.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='namespaceEntity'>
            Required. The service bus namespace.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.Delete(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            Deletes an existing namespace. This operation also removes all
            associated entities including queues, topics, relay points, and
            messages stored under the namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856296.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.DeleteAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            Deletes an existing namespace. This operation also removes all
            associated entities including queues, topics, relay points, and
            messages stored under the namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856296.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.DeleteAuthorizationRule(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,System.String)">
            <summary>
            The delete namespace authorization rule operation deletes an
            authorization rule for a namespace
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='ruleName'>
            Required. The rule name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.DeleteAuthorizationRuleAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,System.String)">
            <summary>
            The delete namespace authorization rule operation deletes an
            authorization rule for a namespace
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='ruleName'>
            Required. The rule name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.Get(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            Returns the description for the specified namespace. (see
            http://msdn.microsoft.com/library/azure/dn140232.aspx for more
            information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.GetAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            Returns the description for the specified namespace. (see
            http://msdn.microsoft.com/library/azure/dn140232.aspx for more
            information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            The response to a request for a particular namespace.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.GetAuthorizationRule(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,System.String)">
            <summary>
            The get authorization rule operation gets an authorization rule for
            a namespace by name.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace to get the authorization rule for.
            </param>
            <param name='entityName'>
            Required. The entity name to get the authorization rule for.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.GetAuthorizationRuleAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,System.String)">
            <summary>
            The get authorization rule operation gets an authorization rule for
            a namespace by name.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace to get the authorization rule for.
            </param>
            <param name='entityName'>
            Required. The entity name to get the authorization rule for.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.GetNamespaceDescription(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            The namespace description is an XML AtomPub document that defines
            the desired semantics for a service namespace. The namespace
            description contains the following properties. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A response to a request for a list of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.GetNamespaceDescriptionAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            The namespace description is an XML AtomPub document that defines
            the desired semantics for a service namespace. The namespace
            description contains the following properties. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj873988.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A response to a request for a list of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.List(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations)">
            <summary>
            Lists the available namespaces. (see
            http://msdn.microsoft.com/en-us/library/azure/hh780759.aspx for
            more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <returns>
            The response to the request for a listing of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.ListAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations)">
            <summary>
            Lists the available namespaces. (see
            http://msdn.microsoft.com/en-us/library/azure/hh780759.aspx for
            more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <returns>
            The response to the request for a listing of namespaces.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.ListAuthorizationRules(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            The get authorization rules operation gets the authorization rules
            for a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace to get the authorization rule for.
            </param>
            <returns>
            A response to a request for a list of authorization rules.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.ListAuthorizationRulesAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String)">
            <summary>
            The get authorization rules operation gets the authorization rules
            for a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace to get the authorization rule for.
            </param>
            <returns>
            A response to a request for a list of authorization rules.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.UpdateAuthorizationRule(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule)">
            <summary>
            The update authorization rule operation updates an authorization
            rule for a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='rule'>
            Optional. Updated access authorization rule.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NamespaceOperationsExtensions.UpdateAuthorizationRuleAsync(Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusSharedAccessAuthorizationRule)">
            <summary>
            The update authorization rule operation updates an authorization
            rule for a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INamespaceOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='rule'>
            Optional. Updated access authorization rule.
            </param>
            <returns>
            A response to a request for a particular authorization rule.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus notification hubs.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations.#ctor(Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient)">
            <summary>
            Initializes a new instance of the NotificationHubOperations class.
            </summary>
            <param name='client'>
            Reference to the service client.
            </param>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations.Client">
            <summary>
            Gets a reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations.DeleteAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes a notification hub associated with a namespace.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations.GetAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperations.ListAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.Delete(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String,System.String)">
            <summary>
            Deletes a notification hub associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.DeleteAsync(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String,System.String)">
            <summary>
            Deletes a notification hub associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.Get(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String,System.String)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.GetAsync(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String,System.String)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.GetConnectionDetails(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String,System.String)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.GetConnectionDetailsAsync(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String,System.String)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='notificationHubName'>
            Required. The notification hub name.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.List(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.NotificationHubOperationsExtensions.ListAsync(Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations,System.String)">
            <summary>
            Lists the notification hubs associated with a namespace.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.INotificationHubOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus queues.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.#ctor(Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient)">
            <summary>
            Initializes a new instance of the QueueOperations class.
            </summary>
            <param name='client'>
            Reference to the service client.
            </param>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.Client">
            <summary>
            Gets a reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.CreateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters,System.Threading.CancellationToken)">
            <summary>
            Creates a new queue. Once created, this queue's resource manifest
            is immutable. This operation is idempotent. Repeating the create
            call, after a queue with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856295.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queue'>
            Required. The service bus queue.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.DeleteAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes an existing queue. This operation will also remove all
            associated state including messages in the queue. (see
            http://msdn.microsoft.com/en-us/library/hh780747.aspx for more
            information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.GetAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The queue description is an XML AtomPub document that defines the
            desired semantics for a subscription. The queue description
            contains the following properties. For more information, see the
            QueueDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Gets the set of connection strings for a queue.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.ListAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Enumerates the queues in the service namespace. The result is
            returned in pages, each containing up to 100 queues. If the
            namespace contains more than 100 queues, a feed is returned that
            contains the first page and a next link with the URI to view the
            next page of data. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780759.asp
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of queues.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperations.UpdateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue,System.Threading.CancellationToken)">
            <summary>
            Updates the queue description and makes a call to update
            corresponding DB entries. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856305.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queue'>
            Required. The service bus queue.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.Create(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters)">
            <summary>
            Creates a new queue. Once created, this queue's resource manifest
            is immutable. This operation is idempotent. Repeating the create
            call, after a queue with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856295.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queue'>
            Required. The service bus queue.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.CreateAsync(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueueCreateParameters)">
            <summary>
            Creates a new queue. Once created, this queue's resource manifest
            is immutable. This operation is idempotent. Repeating the create
            call, after a queue with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856295.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queue'>
            Required. The service bus queue.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.Delete(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,System.String)">
            <summary>
            Deletes an existing queue. This operation will also remove all
            associated state including messages in the queue. (see
            http://msdn.microsoft.com/en-us/library/hh780747.aspx for more
            information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.DeleteAsync(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,System.String)">
            <summary>
            Deletes an existing queue. This operation will also remove all
            associated state including messages in the queue. (see
            http://msdn.microsoft.com/en-us/library/hh780747.aspx for more
            information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.Get(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,System.String)">
            <summary>
            The queue description is an XML AtomPub document that defines the
            desired semantics for a subscription. The queue description
            contains the following properties. For more information, see the
            QueueDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.GetAsync(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,System.String)">
            <summary>
            The queue description is an XML AtomPub document that defines the
            desired semantics for a subscription. The queue description
            contains the following properties. For more information, see the
            QueueDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780773.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.GetConnectionDetails(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,System.String)">
            <summary>
            Gets the set of connection strings for a queue.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.GetConnectionDetailsAsync(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,System.String)">
            <summary>
            Gets the set of connection strings for a queue.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queueName'>
            Required. The queue name.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.List(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String)">
            <summary>
            Enumerates the queues in the service namespace. The result is
            returned in pages, each containing up to 100 queues. If the
            namespace contains more than 100 queues, a feed is returned that
            contains the first page and a next link with the URI to view the
            next page of data. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780759.asp
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A response to a request for a list of queues.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.ListAsync(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String)">
            <summary>
            Enumerates the queues in the service namespace. The result is
            returned in pages, each containing up to 100 queues. If the
            namespace contains more than 100 queues, a feed is returned that
            contains the first page and a next link with the URI to view the
            next page of data. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780759.asp
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A response to a request for a list of queues.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.Update(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue)">
            <summary>
            Updates the queue description and makes a call to update
            corresponding DB entries. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856305.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queue'>
            Required. The service bus queue.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.QueueOperationsExtensions.UpdateAsync(Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusQueue)">
            <summary>
            Updates the queue description and makes a call to update
            corresponding DB entries. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj856305.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IQueueOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='queue'>
            Required. The service bus queue.
            </param>
            <returns>
            A response to a request for a particular queue.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus relays.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperations.#ctor(Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient)">
            <summary>
            Initializes a new instance of the RelayOperations class.
            </summary>
            <param name='client'>
            Reference to the service client.
            </param>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperations.Client">
            <summary>
            Gets a reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Gets the set of connection strings for a relay.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='relayName'>
            Required. The relay name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperationsExtensions">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperationsExtensions.GetConnectionDetails(Microsoft.WindowsAzure.Management.ServiceBus.IRelayOperations,System.String,System.String)">
            <summary>
            Gets the set of connection strings for a relay.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IRelayOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='relayName'>
            Required. The relay name.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.RelayOperationsExtensions.GetConnectionDetailsAsync(Microsoft.WindowsAzure.Management.ServiceBus.IRelayOperations,System.String,System.String)">
            <summary>
            Gets the set of connection strings for a relay.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IRelayOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='relayName'>
            Required. The relay name.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.ApiVersion">
            <summary>
            Gets the API version.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.BaseUri">
            <summary>
            Gets the URI used as the base for all cloud service requests.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.Credentials">
            <summary>
            Gets subscription credentials which uniquely identify Microsoft
            Azure subscription. The subscription ID forms part of the URI for
            every service call.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.LongRunningOperationInitialTimeout">
            <summary>
            Gets or sets the initial timeout for Long Running Operations.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.LongRunningOperationRetryTimeout">
            <summary>
            Gets or sets the retry timeout for Long Running Operations.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.Namespaces">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus namespaces.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.NotificationHubs">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus notification hubs.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.Queues">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus queues.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.Relays">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus relays.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.Topics">
            <summary>
            The Service Bus Management API includes operations for managing
            Service Bus topics for a namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.#ctor">
            <summary>
            Initializes a new instance of the ServiceBusManagementClient class.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials,System.Uri)">
            <summary>
            Initializes a new instance of the ServiceBusManagementClient class.
            </summary>
            <param name='credentials'>
            Required. Gets subscription credentials which uniquely identify
            Microsoft Azure subscription. The subscription ID forms part of
            the URI for every service call.
            </param>
            <param name='baseUri'>
            Optional. Gets the URI used as the base for all cloud service
            requests.
            </param>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials)">
            <summary>
            Initializes a new instance of the ServiceBusManagementClient class.
            </summary>
            <param name='credentials'>
            Required. Gets subscription credentials which uniquely identify
            Microsoft Azure subscription. The subscription ID forms part of
            the URI for every service call.
            </param>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.#ctor(System.Net.Http.HttpClient)">
            <summary>
            Initializes a new instance of the ServiceBusManagementClient class.
            </summary>
            <param name='httpClient'>
            The Http client
            </param>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials,System.Uri,System.Net.Http.HttpClient)">
            <summary>
            Initializes a new instance of the ServiceBusManagementClient class.
            </summary>
            <param name='credentials'>
            Required. Gets subscription credentials which uniquely identify
            Microsoft Azure subscription. The subscription ID forms part of
            the URI for every service call.
            </param>
            <param name='baseUri'>
            Optional. Gets the URI used as the base for all cloud service
            requests.
            </param>
            <param name='httpClient'>
            The Http client
            </param>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.#ctor(Microsoft.Azure.SubscriptionCloudCredentials,System.Net.Http.HttpClient)">
            <summary>
            Initializes a new instance of the ServiceBusManagementClient class.
            </summary>
            <param name='credentials'>
            Required. Gets subscription credentials which uniquely identify
            Microsoft Azure subscription. The subscription ID forms part of
            the URI for every service call.
            </param>
            <param name='httpClient'>
            The Http client
            </param>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.Clone(Hyak.Common.ServiceClient{Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient})">
            <summary>
            Clones properties from current instance to another
            ServiceBusManagementClient instance
            </summary>
            <param name='client'>
            Instance of ServiceBusManagementClient to clone to
            </param>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.GetOperationStatusAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            The Get Operation Status operation returns the status of
            thespecified operation. After calling an asynchronous operation,
            you can call Get Operation Status to determine whether the
            operation has succeeded, failed, or is still in progress. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/ee460783.aspx
            for more information)
            </summary>
            <param name='requestId'>
            Required. The request ID for the request you wish to track. The
            request ID is returned in the x-ms-request-id response header for
            every request.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The response body contains the status of the specified asynchronous
            operation, indicating whether it has succeeded, is inprogress, or
            has failed. Note that this status is distinct from the HTTP status
            code returned for the Get Operation Status operation itself. If
            the asynchronous operation succeeded, the response body includes
            the HTTP status code for the successful request. If the
            asynchronous operation failed, the response body includes the HTTP
            status code for the failed request, and also includes error
            information regarding the failure.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.GetServiceBusRegionsAsync(System.Threading.CancellationToken)">
            <summary>
            Retrieves the list of regions that support the creation and
            management of Service Bus service namespaces. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj860465.aspx
            for more information)
            </summary>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of regions.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClientExtensions">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClientExtensions.GetOperationStatus(Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient,System.String)">
            <summary>
            The Get Operation Status operation returns the status of
            thespecified operation. After calling an asynchronous operation,
            you can call Get Operation Status to determine whether the
            operation has succeeded, failed, or is still in progress. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/ee460783.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.
            </param>
            <param name='requestId'>
            Required. The request ID for the request you wish to track. The
            request ID is returned in the x-ms-request-id response header for
            every request.
            </param>
            <returns>
            The response body contains the status of the specified asynchronous
            operation, indicating whether it has succeeded, is inprogress, or
            has failed. Note that this status is distinct from the HTTP status
            code returned for the Get Operation Status operation itself. If
            the asynchronous operation succeeded, the response body includes
            the HTTP status code for the successful request. If the
            asynchronous operation failed, the response body includes the HTTP
            status code for the failed request, and also includes error
            information regarding the failure.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClientExtensions.GetOperationStatusAsync(Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient,System.String)">
            <summary>
            The Get Operation Status operation returns the status of
            thespecified operation. After calling an asynchronous operation,
            you can call Get Operation Status to determine whether the
            operation has succeeded, failed, or is still in progress. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/ee460783.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.
            </param>
            <param name='requestId'>
            Required. The request ID for the request you wish to track. The
            request ID is returned in the x-ms-request-id response header for
            every request.
            </param>
            <returns>
            The response body contains the status of the specified asynchronous
            operation, indicating whether it has succeeded, is inprogress, or
            has failed. Note that this status is distinct from the HTTP status
            code returned for the Get Operation Status operation itself. If
            the asynchronous operation succeeded, the response body includes
            the HTTP status code for the successful request. If the
            asynchronous operation failed, the response body includes the HTTP
            status code for the failed request, and also includes error
            information regarding the failure.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClientExtensions.GetServiceBusRegions(Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient)">
            <summary>
            Retrieves the list of regions that support the creation and
            management of Service Bus service namespaces. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj860465.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.
            </param>
            <returns>
            A response to a request for a list of regions.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClientExtensions.GetServiceBusRegionsAsync(Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient)">
            <summary>
            Retrieves the list of regions that support the creation and
            management of Service Bus service namespaces. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj860465.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.IServiceBusManagementClient.
            </param>
            <returns>
            A response to a request for a list of regions.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations">
            <summary>
            The Service Bus Management API includes operations for managing Service
            Bus topics for a namespace.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.#ctor(Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient)">
            <summary>
            Initializes a new instance of the TopicOperations class.
            </summary>
            <param name='client'>
            Reference to the service client.
            </param>
        </member>
        <member name="P:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.Client">
            <summary>
            Gets a reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ServiceBusManagementClient.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.CreateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic,System.Threading.CancellationToken)">
            <summary>
            Creates a new topic. Once created, this topic resource manifest is
            immutable. This operation is not idempotent. Repeating the create
            call, after a topic with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780728.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topic'>
            Required. The Service Bus topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.DeleteAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Deletes an existing topic. This operation will also remove all
            associated state including associated subscriptions. (see
            http://msdn.microsoft.com/en-us/library/hh780721.aspx for more
            information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.GetAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            The topic description is an XML AtomPub document that defines the
            desired semantics for a topic. The topic description contains the
            following properties. For more information, see the
            TopicDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.GetConnectionDetailsAsync(System.String,System.String,System.Threading.CancellationToken)">
            <summary>
            Gets the set of connection strings for a topic.
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.ListAsync(System.String,System.Threading.CancellationToken)">
            <summary>
            Enumerates the topics in the service namespace. An empty feed is
            returned if no topic exists in the service namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780744.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a list of topics.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperations.UpdateAsync(System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic,System.Threading.CancellationToken)">
            <summary>
            Updates a topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj839740.aspx
            for more information)
            </summary>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topic'>
            Required. The Service Bus topic.
            </param>
            <param name='cancellationToken'>
            Cancellation token.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="T:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions">
            <summary>
            The Service Bus Management API is a REST API for managing Service Bus
            queues, topics, rules and subscriptions. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780776.aspx for
            more information)
            </summary>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.Create(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic)">
            <summary>
            Creates a new topic. Once created, this topic resource manifest is
            immutable. This operation is not idempotent. Repeating the create
            call, after a topic with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780728.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topic'>
            Required. The Service Bus topic.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.CreateAsync(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic)">
            <summary>
            Creates a new topic. Once created, this topic resource manifest is
            immutable. This operation is not idempotent. Repeating the create
            call, after a topic with same name has been created successfully,
            will result in a 409 Conflict error message. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780728.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topic'>
            Required. The Service Bus topic.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.Delete(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,System.String)">
            <summary>
            Deletes an existing topic. This operation will also remove all
            associated state including associated subscriptions. (see
            http://msdn.microsoft.com/en-us/library/hh780721.aspx for more
            information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.DeleteAsync(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,System.String)">
            <summary>
            Deletes an existing topic. This operation will also remove all
            associated state including associated subscriptions. (see
            http://msdn.microsoft.com/en-us/library/hh780721.aspx for more
            information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <returns>
            A standard service response including an HTTP status code and
            request ID.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.Get(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,System.String)">
            <summary>
            The topic description is an XML AtomPub document that defines the
            desired semantics for a topic. The topic description contains the
            following properties. For more information, see the
            TopicDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.GetAsync(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,System.String)">
            <summary>
            The topic description is an XML AtomPub document that defines the
            desired semantics for a topic. The topic description contains the
            following properties. For more information, see the
            TopicDescription Properties topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780749.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.GetConnectionDetails(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,System.String)">
            <summary>
            Gets the set of connection strings for a topic.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.GetConnectionDetailsAsync(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,System.String)">
            <summary>
            Gets the set of connection strings for a topic.
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topicName'>
            Required. The topic.
            </param>
            <returns>
            The set of connection details for a service bus entity.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.List(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String)">
            <summary>
            Enumerates the topics in the service namespace. An empty feed is
            returned if no topic exists in the service namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780744.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A response to a request for a list of topics.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.ListAsync(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String)">
            <summary>
            Enumerates the topics in the service namespace. An empty feed is
            returned if no topic exists in the service namespace. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/hh780744.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <returns>
            A response to a request for a list of topics.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.Update(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic)">
            <summary>
            Updates a topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj839740.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topic'>
            Required. The Service Bus topic.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
        <member name="M:Microsoft.WindowsAzure.Management.ServiceBus.TopicOperationsExtensions.UpdateAsync(Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations,System.String,Microsoft.WindowsAzure.Management.ServiceBus.Models.ServiceBusTopic)">
            <summary>
            Updates a topic. (see
            http://msdn.microsoft.com/en-us/library/windowsazure/jj839740.aspx
            for more information)
            </summary>
            <param name='operations'>
            Reference to the
            Microsoft.WindowsAzure.Management.ServiceBus.ITopicOperations.
            </param>
            <param name='namespaceName'>
            Required. The namespace name.
            </param>
            <param name='topic'>
            Required. The Service Bus topic.
            </param>
            <returns>
            A response to a request for a particular topic.
            </returns>
        </member>
    </members>
</doc>