你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

WorkflowRun 构造函数

定义

重载

WorkflowRun()

初始化 WorkflowRun 类的新实例。

WorkflowRun(String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, String, Object, String, Correlation, ResourceReference, WorkflowRunTrigger, IDictionary<String,WorkflowOutputParameter>, WorkflowRunTrigger, String, String)

初始化 WorkflowRun 类的新实例。

WorkflowRun()

初始化 WorkflowRun 类的新实例。

public WorkflowRun ();
Public Sub New ()

适用于

WorkflowRun(String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, String, Object, String, Correlation, ResourceReference, WorkflowRunTrigger, IDictionary<String,WorkflowOutputParameter>, WorkflowRunTrigger, String, String)

初始化 WorkflowRun 类的新实例。

public WorkflowRun (string id = default, DateTime? waitEndTime = default, DateTime? startTime = default, DateTime? endTime = default, string status = default, string code = default, object error = default, string correlationId = default, Microsoft.Azure.Management.Logic.Models.Correlation correlation = default, Microsoft.Azure.Management.Logic.Models.ResourceReference workflow = default, Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger trigger = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Logic.Models.WorkflowOutputParameter> outputs = default, Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger response = default, string name = default, string type = default);
new Microsoft.Azure.Management.Logic.Models.WorkflowRun : string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * string * string * obj * string * Microsoft.Azure.Management.Logic.Models.Correlation * Microsoft.Azure.Management.Logic.Models.ResourceReference * Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Logic.Models.WorkflowOutputParameter> * Microsoft.Azure.Management.Logic.Models.WorkflowRunTrigger * string * string -> Microsoft.Azure.Management.Logic.Models.WorkflowRun
Public Sub New (Optional id As String = Nothing, Optional waitEndTime As Nullable(Of DateTime) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional status As String = Nothing, Optional code As String = Nothing, Optional error As Object = Nothing, Optional correlationId As String = Nothing, Optional correlation As Correlation = Nothing, Optional workflow As ResourceReference = Nothing, Optional trigger As WorkflowRunTrigger = Nothing, Optional outputs As IDictionary(Of String, WorkflowOutputParameter) = Nothing, Optional response As WorkflowRunTrigger = Nothing, Optional name As String = Nothing, Optional type As String = Nothing)

参数

id
String

资源 ID。

waitEndTime
Nullable<DateTime>

获取等待结束时间。

startTime
Nullable<DateTime>

获取开始时间。

endTime
Nullable<DateTime>

获取结束时间。

status
String

获取状态。 可能的值包括:“NotSpecified”、“Paused”、“Running”、“Waiting”、“Succeeded”、“Skipped”、“Suspended”、“Cancelled”、“Failed”、“Faulted”、“TimedOut”、“Aborted”、“Ignored”

code
String

获取代码。

error
Object

获取错误。

correlationId
String

获取相关 ID。

correlation
Correlation

运行关联。

workflow
ResourceReference

获取对工作流版本的引用。

trigger
WorkflowRunTrigger

获取触发的触发器。

outputs
IDictionary<String,WorkflowOutputParameter>

获取输出。

response
WorkflowRunTrigger

获取流运行的响应。

name
String

获取工作流运行名称。

type
String

获取工作流运行类型。

适用于