public CancellationToken CancellationToken { get; set; }
Public Property CancellationToken As CancellationToken
Get
Set
Dim instance As AsyncCommandBase
Dim value As CancellationToken
value = instance.CancellationToken
instance.CancellationToken = value
public:
virtual property CancellationToken CancellationToken {
CancellationToken get () sealed;
void set (CancellationToken value) sealed;
}
If a CancellationToken was passed to the CommandManagerRunCommandAsync(CancellationToken) method, this property will be set to that token prior to the IAsyncCommandRunAsync method being called.