共用方式為


ISupportsGettingByParent<T,ParentT,ManagerT>.GetByParentAsync Method

Definition

Overloads

GetByParentAsync(ParentT, String, CancellationToken)

Gets the information about a resource from Azure based on the resource id.

GetByParentAsync(String, String, String, CancellationToken)

Gets the information about a resource from Azure based on the resource id.

GetByParentAsync(ParentT, String, CancellationToken)

Gets the information about a resource from Azure based on the resource id.

public System.Threading.Tasks.Task<T> GetByParentAsync (ParentT parentResource, string name, System.Threading.CancellationToken cancellationToken = default);
abstract member GetByParentAsync : 'ParentT * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
Public Function GetByParentAsync (parentResource As ParentT, name As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of T)

Parameters

parentResource
ParentT

The instance of parent resource.

name
String

The name of resource.

cancellationToken
CancellationToken

Returns

Task<T>

Applies to

GetByParentAsync(String, String, String, CancellationToken)

Gets the information about a resource from Azure based on the resource id.

public System.Threading.Tasks.Task<T> GetByParentAsync (string resourceGroup, string parentName, string name, System.Threading.CancellationToken cancellationToken = default);
abstract member GetByParentAsync : string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
Public Function GetByParentAsync (resourceGroup As String, parentName As String, name As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of T)

Parameters

resourceGroup
String

The name of resource group.

parentName
String

The name of parent resource.

name
String

The name of resource.

cancellationToken
CancellationToken

Returns

Task<T>

Applies to