ContentDeliveryNetworkService.WaitForServiceDeployedAsync Method |
This API is preliminary and subject to change.
Waits for the service to be deployed.
Namespace: OpenStack.ContentDeliveryNetworks.v1Assembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntaxpublic Task<Service> WaitForServiceDeployedAsync(
string serviceId,
Nullable<TimeSpan> refreshDelay = null,
Nullable<TimeSpan> timeout = null,
IProgress<bool> progress = null,
CancellationToken cancellationToken = null
)
Public Function WaitForServiceDeployedAsync (
serviceId As String,
Optional refreshDelay As Nullable(Of TimeSpan) = Nothing,
Optional timeout As Nullable(Of TimeSpan) = Nothing,
Optional progress As IProgress(Of Boolean) = Nothing,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of Service)
public:
virtual Task<Service^>^ WaitForServiceDeployedAsync(
String^ serviceId,
Nullable<TimeSpan> refreshDelay = nullptr,
Nullable<TimeSpan> timeout = nullptr,
IProgress<bool>^ progress = nullptr,
CancellationToken cancellationToken = nullptr
) sealed
abstract WaitForServiceDeployedAsync :
serviceId : string *
?refreshDelay : Nullable<TimeSpan> *
?timeout : Nullable<TimeSpan> *
?progress : IProgress<bool> *
?cancellationToken : CancellationToken
(* Defaults:
let _refreshDelay = defaultArg refreshDelay null
let _timeout = defaultArg timeout null
let _progress = defaultArg progress null
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<Service>
override WaitForServiceDeployedAsync :
serviceId : string *
?refreshDelay : Nullable<TimeSpan> *
?timeout : Nullable<TimeSpan> *
?progress : IProgress<bool> *
?cancellationToken : CancellationToken
(* Defaults:
let _refreshDelay = defaultArg refreshDelay null
let _timeout = defaultArg timeout null
let _progress = defaultArg progress null
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<Service>
Parameters
- serviceId
- Type: System.String
The service identifier. - refreshDelay (Optional)
- Type: System.Nullable<TimeSpan>
The amount of time to wait between requests. - timeout (Optional)
- Type: System.Nullable<TimeSpan>
The amount of time to wait before throwing a TimeoutException. - progress (Optional)
- Type: System.IProgress<Boolean>
The progress callback. - cancellationToken (Optional)
- Type: System.Threading.CancellationToken
A cancellation token that can be used by other objects or threads to receive notice of cancellation.
Return Value
Type:
Task<Service>Implements
IContentDeliveryNetworkService.WaitForServiceDeployedAsync(String, Nullable<TimeSpan>, Nullable<TimeSpan>, IProgress<Boolean>, CancellationToken)
Exceptions
Version Information.NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4
See Also