DeferredOperationState 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.
Describes the possible states for an asynchronous operation.
public enum class DeferredOperationState
[System.CodeDom.Compiler.GeneratedCode("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContract(Name="DeferredOperationState", Namespace="http://schemas.microsoft.com/xrm/2011/Contracts/Deployment")]
public enum DeferredOperationState
[<System.CodeDom.Compiler.GeneratedCode("System.Runtime.Serialization", "4.0.0.0")>]
[<System.Runtime.Serialization.DataContract(Name="DeferredOperationState", Namespace="http://schemas.microsoft.com/xrm/2011/Contracts/Deployment")>]
type DeferredOperationState =
Public Enum DeferredOperationState
- Inheritance
-
DeferredOperationState
- Attributes
Fields
Name | Value | Description |
---|---|---|
Unknown | 0 | Specifies that the operation state is unknown. Value = 0. |
Queued | 1 | Specifies that the operation is queued but has not been started. Value = 1. |
Processing | 2 | Specifies that the operation is in progress. Value = 2. |
Completed | 3 | Specifies that the operation has completed. Value = 3. |
Failed | 4 | Specifies that the operation has failed. Value = 4. |