다음을 통해 공유


OperationResult Constructors

Definition

Overloads

OperationResult()

Initializes a new instance of the OperationResult class.

OperationResult(Nullable<DateTime>, Nullable<DateTime>, RunActionCorrelation, String, String, Object, String, Object, ContentLink, Object, ContentLink, Object, IList<RetryHistory>, Nullable<Int32>)

Initializes a new instance of the OperationResult class.

OperationResult()

Initializes a new instance of the OperationResult class.

public OperationResult ();
Public Sub New ()

Applies to

Initializes a new instance of the OperationResult class.

public OperationResult (DateTime? startTime = default, DateTime? endTime = default, Microsoft.Azure.Management.Logic.Models.RunActionCorrelation correlation = default, string status = default, string code = default, object error = default, string trackingId = default, object inputs = default, Microsoft.Azure.Management.Logic.Models.ContentLink inputsLink = default, object outputs = default, Microsoft.Azure.Management.Logic.Models.ContentLink outputsLink = default, object trackedProperties = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Logic.Models.RetryHistory> retryHistory = default, int? iterationCount = default);
new Microsoft.Azure.Management.Logic.Models.OperationResult : Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.Logic.Models.RunActionCorrelation * string * string * obj * string * obj * Microsoft.Azure.Management.Logic.Models.ContentLink * obj * Microsoft.Azure.Management.Logic.Models.ContentLink * obj * System.Collections.Generic.IList<Microsoft.Azure.Management.Logic.Models.RetryHistory> * Nullable<int> -> Microsoft.Azure.Management.Logic.Models.OperationResult
Public Sub New (Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional correlation As RunActionCorrelation = Nothing, Optional status As String = Nothing, Optional code As String = Nothing, Optional error As Object = Nothing, Optional trackingId As String = Nothing, Optional inputs As Object = Nothing, Optional inputsLink As ContentLink = Nothing, Optional outputs As Object = Nothing, Optional outputsLink As ContentLink = Nothing, Optional trackedProperties As Object = Nothing, Optional retryHistory As IList(Of RetryHistory) = Nothing, Optional iterationCount As Nullable(Of Integer) = Nothing)

Parameters

startTime
Nullable<DateTime>

The start time of the workflow scope repetition.

endTime
Nullable<DateTime>

The end time of the workflow scope repetition.

correlation
RunActionCorrelation

The correlation properties.

status
String

The status of the workflow scope repetition. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored'

code
String

The workflow scope repetition code.

error
Object
trackingId
String

Gets the tracking id.

inputs
Object

Gets the inputs.

inputsLink
ContentLink

Gets the link to inputs.

outputs
Object

Gets the outputs.

outputsLink
ContentLink

Gets the link to outputs.

trackedProperties
Object

Gets the tracked properties.

retryHistory
IList<RetryHistory>

Gets the retry histories.

iterationCount
Nullable<Int32>

Applies to