Dela via


FabricClient.QueryClient.GetServiceGroupMemberTypeListAsync Method

Definition

Overloads

GetServiceGroupMemberTypeListAsync(String, String)

Get service group members types of service group(s).

GetServiceGroupMemberTypeListAsync(String, String, String)

Get service group members types of service group(s).

GetServiceGroupMemberTypeListAsync(String, String, String, TimeSpan, CancellationToken)

Get service group members types of service group(s).

GetServiceGroupMemberTypeListAsync(String, String)

Get service group members types of service group(s).

public System.Threading.Tasks.Task<System.Fabric.Query.ServiceGroupMemberTypeList> GetServiceGroupMemberTypeListAsync (string applicationTypeName, string applicationTypeVersion);
member this.GetServiceGroupMemberTypeListAsync : string * string -> System.Threading.Tasks.Task<System.Fabric.Query.ServiceGroupMemberTypeList>
Public Function GetServiceGroupMemberTypeListAsync (applicationTypeName As String, applicationTypeVersion As String) As Task(Of ServiceGroupMemberTypeList)

Parameters

applicationTypeName
String

The application type name of the service group.

applicationTypeVersion
String

The application type version of the service group.

Returns

A task that represents the asynchronous query operation.

The returned task contains the list of service group member types as ServiceGroupMemberTypeList.

Exceptions

Applies to

GetServiceGroupMemberTypeListAsync(String, String, String)

Get service group members types of service group(s).

public System.Threading.Tasks.Task<System.Fabric.Query.ServiceGroupMemberTypeList> GetServiceGroupMemberTypeListAsync (string applicationTypeName, string applicationTypeVersion, string serviceGroupTypeNameFilter);
member this.GetServiceGroupMemberTypeListAsync : string * string * string -> System.Threading.Tasks.Task<System.Fabric.Query.ServiceGroupMemberTypeList>
Public Function GetServiceGroupMemberTypeListAsync (applicationTypeName As String, applicationTypeVersion As String, serviceGroupTypeNameFilter As String) As Task(Of ServiceGroupMemberTypeList)

Parameters

applicationTypeName
String

The application type name of the service group.

applicationTypeVersion
String

The application type version of the service group.

serviceGroupTypeNameFilter
String

The name of the service group type to get.

Returns

A task that represents the asynchronous query operation.

The returned task contains the list of service group member types as ServiceGroupMemberTypeList.

Exceptions

This operation has a timeout of 60 seconds.

See https://docs.microsoft.com/azure/service-fabric/service-fabric-errors-and-exceptions for handling common FabricClient failures.

Applies to

GetServiceGroupMemberTypeListAsync(String, String, String, TimeSpan, CancellationToken)

Get service group members types of service group(s).

public System.Threading.Tasks.Task<System.Fabric.Query.ServiceGroupMemberTypeList> GetServiceGroupMemberTypeListAsync (string applicationTypeName, string applicationTypeVersion, string serviceGroupTypeNameFilter, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.GetServiceGroupMemberTypeListAsync : string * string * string * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Fabric.Query.ServiceGroupMemberTypeList>
Public Function GetServiceGroupMemberTypeListAsync (applicationTypeName As String, applicationTypeVersion As String, serviceGroupTypeNameFilter As String, timeout As TimeSpan, cancellationToken As CancellationToken) As Task(Of ServiceGroupMemberTypeList)

Parameters

applicationTypeName
String

The application type name of the service group.

applicationTypeVersion
String

The application type version of the service group.

serviceGroupTypeNameFilter
String

The name of the service group type to get.

timeout
TimeSpan

The timeout to the operation.

cancellationToken
CancellationToken

Notifies the operation should be canceled.

Returns

A task that represents the asynchronous query operation.

The returned task contains the list of service group member types as ServiceGroupMemberTypeList.

Exceptions

Applies to