NamespaceManager Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an anchor class used in managing entities, such as queues, topics, subscriptions, and rules, in your service namespace. You must provide service namespace address and access credentials in order to manage your service namespace.
public sealed class NamespaceManager
type NamespaceManager = class
Public NotInheritable Class NamespaceManager
- Inheritance
-
System.ObjectNamespaceManager
Examples
NamespaceManagerSettings nsSettings = new NamespaceManagerSettings(); // with credentials and operation timeout
NamespaceManager manager = new NamespaceManager(new Uri("baseUri"), NsSettings);
Constructors
NamespaceManager(String) |
Initializes a new instance of the NamespaceManager class with the given service namespace address. |
Methods
CreateFromConnectionString(String) |
Creates a new instance of NamespaceManager using a specified connection string. |
CreateNotificationHub(NotificationHubDescription) |
Creates a new notification hub with the properties specified in the |
CreateNotificationHubAsync(NotificationHubDescription) |
Asynchronously creates a new notification hub with the properties specified in the |
DeleteNotificationHub(String) |
Deletes a notification hub at the provided |
DeleteNotificationHubAsync(String) |
Asynchronously deletes a notification hub at the provided |
GetNotificationHub(String) |
Retrieves the description of a notification hub from the service namespace. |
GetNotificationHubAsync(String) |
Asynchronously retrieves the description of a notification hub from the service namespace. |
GetNotificationHubJobAsync(String, String) |
Asynchronously gets a specified notification hubs job. |
GetNotificationHubJobsAsync(String) |
Asynchronously gets a set of all notification hubs jobs. |
GetNotificationHubs() |
Retrieves the description of a notification hub from the service namespace. |
GetNotificationHubsAsync() |
Asynchronously retrieves the description of a notification hub from the service namespace. |
NotificationHubExists(String) |
Determines whether there is a notification hub at the specified |
NotificationHubExistsAsync(String) |
Asynchronously determines whether there is a notification hub at the specified |
SubmitNotificationHubJobAsync(NotificationHubJob, String) |
Submits a notification hub job for processing. |
UpdateNotificationHub(NotificationHubDescription) |
Updates an existing notification hub at the path specified in the |
UpdateNotificationHubAsync(NotificationHubDescription) |
Asynchronously updates an existing notification hub at the path specified in the |