A date specification which is used determine if the Job or Setup should be submitted during the Workflow's execution. The value will be compared with the Workflow's ""Today"" date, which is by default the current date unless it was changed by a ""SetToday"" Activity. Multiple dates can be specified using commas.
Syntax
'Declaration
<System.ComponentModel.DescriptionAttribute("A date specification which is used determine if the Job or Setup should be submitted during the Workflow's execution. The value will be compared with the Workflow's "Today" date, which is by default the current date unless it was changed by a "SetToday" Activity. Multiple dates can be specified using commas.")>
<System.ComponentModel.CategoryAttribute("Submit Constraints")>
<System.ComponentModel.DefaultValueAttribute()>
Public Property OnlySubmitOn As System.Activities.InArgument(Of String)
'Usage
Dim instance As SubmitEntry
Dim value As System.Activities.InArgument(Of String)
instance.OnlySubmitOn = value
value = instance.OnlySubmitOn
[System.ComponentModel.Description("A date specification which is used determine if the Job or Setup should be submitted during the Workflow's execution. The value will be compared with the Workflow's "Today" date, which is by default the current date unless it was changed by a "SetToday" Activity. Multiple dates can be specified using commas.")]
[System.ComponentModel.Category("Submit Constraints")]
[System.ComponentModel.DefaultValue()]
public System.Activities.InArgument<string> OnlySubmitOn {get; set;}
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also