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

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

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

Same methods

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