ManagementClient.GetTopicAsync(String, CancellationToken) Method

Definition

Retrieves a topic from the service namespace.

public virtual System.Threading.Tasks.Task<Microsoft.Azure.ServiceBus.Management.TopicDescription> GetTopicAsync (string topicPath, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTopicAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.ServiceBus.Management.TopicDescription>
override this.GetTopicAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.ServiceBus.Management.TopicDescription>
Public Overridable Function GetTopicAsync (topicPath As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of TopicDescription)

Parameters

topicPath
String

The path of the topic relative to service bus namespace.

cancellationToken
CancellationToken

Returns

TopicDescription containing information about the topic.

Exceptions

Thrown if topicPath is null, white space empty or not in the right format.

The length of topic path is greater than 260.

The operation times out. The timeout period is initialized through the ServiceBusConnection class. You may need to increase the value of timeout to avoid this exception if the timeout value is relatively low.

Topic with this name does not exist.

No sufficient permission to perform this operation. You should check to ensure that your ManagementClient has the correct TokenProvider credentials to perform this operation.

The server is busy. You should wait before you retry the operation.

An internal error or an unexpected exception occured.

Applies to