GetFilteredWorkflowSchedules

Filters a set of schedules and returns only those schedules that match a regex filtering expression. It returns a collection of data contract objects from WorkflowScheduleData.

InputsData TypeDescription
scheduleFilterString

Specifies the regex filter to filter the schedules by.

OutputsDescription
Collection<WorkflowScheduleData> 

Returns a list of preconfigured workflow schedules that match a regex filtering expression.

Data Contract

Properties of the WorkflowScheduleData object. This object is returned by the GetFilteredWorkflowSchedules method.

[DataContract]
public class WorkflowScheduleData
{       
  [DataMember]        
  public string DisplayName;

  [DataMember]  
  Public string UserVersion;                

  [DataMember]        
  public string ScheduleAddress;
}