你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
NamespaceManager.GetSubscriptionsAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GetSubscriptionsAsync(String, String) |
异步检索服务命名空间中所有订阅的可枚举集合。 |
GetSubscriptionsAsync(String) |
异步检索服务命名空间中所有订阅的可枚举集合。 |
GetSubscriptionsAsync(String, String)
异步检索服务命名空间中所有订阅的可枚举集合。
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.SubscriptionDescription>> GetSubscriptionsAsync (string topicPath, string filter);
member this.GetSubscriptionsAsync : string * string -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.SubscriptionDescription>>
Public Function GetSubscriptionsAsync (topicPath As String, filter As String) As Task(Of IEnumerable(Of SubscriptionDescription))
参数
- topicPath
- String
主题相对于服务命名空间基址的路径。
- filter
- String
用于筛选要检索的订阅的字符串。
返回
异步操作。
示例
var subscriptionsWithMessages = await namespaceManager.GetSubscriptionsAsync("topicName", "messageCount Gt 0");
var subscriptionsStartsWith = await namespaceManager.GetSubscriptionsAsync("topicName", $"startswith(path, 'subscription') eq true");
注解
筛选表达式格式: {Propery} {Logical Operator} {Value} and {Filter expression} {Function} {Logical Operator} {Value} and {Filter expression} ----------------------------------------------------------------------------------------- 可用属性: ModifiedAt |访问At |CreatedAt |MessageCount 逻辑运算符:Eq |Ne |Gt |Ge |Lt |Le Value: 相应属性类型的值 Functions: startsthwith ({Propery}, {Value})
适用于
GetSubscriptionsAsync(String)
异步检索服务命名空间中所有订阅的可枚举集合。
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.SubscriptionDescription>> GetSubscriptionsAsync (string topicPath);
member this.GetSubscriptionsAsync : string -> System.Threading.Tasks.Task<seq<Microsoft.ServiceBus.Messaging.SubscriptionDescription>>
Public Function GetSubscriptionsAsync (topicPath As String) As Task(Of IEnumerable(Of SubscriptionDescription))
参数
- topicPath
- String
主题相对于服务命名空间基址的路径。
返回
异步操作。