UntilActivity Class
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 activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier.
[Microsoft.Rest.Serialization.JsonTransformation]
[Newtonsoft.Json.JsonObject("Until")]
public class UntilActivity : Microsoft.Azure.Management.DataFactory.Models.ControlActivity
[<Microsoft.Rest.Serialization.JsonTransformation>]
[<Newtonsoft.Json.JsonObject("Until")>]
type UntilActivity = class
inherit ControlActivity
Public Class UntilActivity
Inherits ControlActivity
- Inheritance
- Attributes
-
JsonTransformationAttribute Newtonsoft.Json.JsonObjectAttribute
Constructors
UntilActivity() |
Initializes a new instance of the UntilActivity class. |
UntilActivity(String, Expression, IList<Activity>, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, Object) |
Initializes a new instance of the UntilActivity class. |
Properties
Activities |
Gets or sets list of activities to execute. |
AdditionalProperties |
Gets or sets unmatched properties from the message are deserialized this collection (Inherited from Activity) |
DependsOn |
Gets or sets activity depends on condition. (Inherited from Activity) |
Description |
Gets or sets activity description. (Inherited from Activity) |
Expression |
Gets or sets an expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true |
Name |
Gets or sets activity name. (Inherited from Activity) |
Timeout |
Gets or sets specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). |
UserProperties |
Gets or sets activity user properties. (Inherited from Activity) |
Methods
Validate() |
Validate the object. |
Applies to
Azure SDK for .NET