Amazon.DeviceFarm.AmazonDeviceFarmClient.GetRunAsync C# (CSharp) Метод

GetRunAsync() публичный Метод

Gets information about a run.
/// An invalid argument was specified. /// /// A limit was exceeded. /// /// The specified entity was not found. /// /// There was a problem with the service account. ///
public GetRunAsync ( string arn, System cancellationToken = default(CancellationToken) ) : Task
arn string The run's ARN.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetRunResponse> GetRunAsync(string arn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetRunRequest();
            request.Arn = arn;
            return GetRunAsync(request, cancellationToken);
        }

Same methods

AmazonDeviceFarmClient::GetRunAsync ( Amazon.DeviceFarm.Model.GetRunRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonDeviceFarmClient