CompletionMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This is an enum used to indicate when the API should complete.
[System.Serializable]
public enum CompletionMode
[<System.Serializable>]
type CompletionMode =
Public Enum CompletionMode
- Inheritance
-
CompletionMode
- Attributes
Fields
Name | Value | Description |
---|---|---|
Invalid | 0 | Completion mode does not have a valid value. |
DoNotVerify | 1 | Do not verify the completion of the action. |
Verify | 2 | Verify the completion of the action. |
Remarks
The values indicate whether the API should complete when the request for the operation is done or when the requested operation has completed. For example, a request to restart a node could complete as soon the request is accepted or when the API can verify that the node has restarted. The actual verification depends upon the API being used.
Applies to
Azure SDK for .NET