你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EventGridExtensions.GetPartnerTopics 方法

定义

重载

GetPartnerTopics(ResourceGroupResource)

获取 ResourceGroupResource 中 PartnerTopicResources 的集合。

GetPartnerTopics(SubscriptionResource, String, Nullable<Int32>, CancellationToken)

列出 Azure 订阅下的所有合作伙伴主题。

  • 请求路径/subscriptions/{subscriptionId}/providers/Microsoft.EventGrid/partnerTopics
  • 操作IdPartnerTopics_ListBySubscription

GetPartnerTopics(ResourceGroupResource)

获取 ResourceGroupResource 中 PartnerTopicResources 的集合。

public static Azure.ResourceManager.EventGrid.PartnerTopicCollection GetPartnerTopics (this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource);
static member GetPartnerTopics : Azure.ResourceManager.Resources.ResourceGroupResource -> Azure.ResourceManager.EventGrid.PartnerTopicCollection
<Extension()>
Public Function GetPartnerTopics (resourceGroupResource As ResourceGroupResource) As PartnerTopicCollection

参数

resourceGroupResource
ResourceGroupResource

方法 ResourceGroupResource 将对其执行的实例。

返回

一个 对象,表示 PartnerTopicResources 的集合及其在 PartnerTopicResource 上的操作。

适用于

GetPartnerTopics(SubscriptionResource, String, Nullable<Int32>, CancellationToken)

列出 Azure 订阅下的所有合作伙伴主题。

  • 请求路径/subscriptions/{subscriptionId}/providers/Microsoft.EventGrid/partnerTopics
  • 操作IdPartnerTopics_ListBySubscription
public static Azure.Pageable<Azure.ResourceManager.EventGrid.PartnerTopicResource> GetPartnerTopics (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, string filter = default, int? top = default, System.Threading.CancellationToken cancellationToken = default);
static member GetPartnerTopics : Azure.ResourceManager.Resources.SubscriptionResource * string * Nullable<int> * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.EventGrid.PartnerTopicResource>
<Extension()>
Public Function GetPartnerTopics (subscriptionResource As SubscriptionResource, Optional filter As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of PartnerTopicResource)

参数

subscriptionResource
SubscriptionResource

方法 SubscriptionResource 将对其执行的实例。

filter
String

用于使用 OData 语法筛选搜索结果的查询。 仅允许对“name”属性进行筛选,并且 OData 操作数有限。 这些操作包括:“contains”函数以及以下逻辑运算:not、、、或 eq (等于) ,ne (表示不等于) 。 不支持算术运算。 下面是一个有效的筛选器示例:$filter=contains (namE,'PATTERN') ,名称 ne 'PATTERN-1'。 下面是无效的筛选器示例:$filter=location eq 'westus'。

top
Nullable<Int32>

列表操作每页返回的结果数。 top 参数的有效范围为 1 到 100。 如果未指定,则返回的默认结果数为每页 20 个项。

cancellationToken
CancellationToken

要使用的取消标记。

返回

可能需要多个服务请求来循环访问的 的 PartnerTopicResource 集合。

适用于