Class GetWorkflowsByCriteriaRequest

The GetWorkflowsByCriteriaRequest class is a REST data model representing a criteria by which workflows should be filtered for retrieval.

Inheritance
System.Object
GetWorkflowsByCriteriaRequest
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Moderation.Rest.Contracts
Assembly: EPiServer.Social.Moderation.Rest.Contracts.dll
Version: 1.5.4
Syntax
public class GetWorkflowsByCriteriaRequest

Constructors

GetWorkflowsByCriteriaRequest()

Declaration
public GetWorkflowsByCriteriaRequest()

Properties

CalculateTotalCount

Gets or sets whether to calculate total count or not.

Declaration
public bool CalculateTotalCount { get; set; }
Property Value
Type Description
System.Boolean

ExtensionFilter

Gets or sets the extension filter.

Declaration
public ExtensionFilter ExtensionFilter { get; set; }
Property Value
Type Description
ExtensionFilter

ExtensionType

Gets or sets the extension type to filter on.

Declaration
public string ExtensionType { get; set; }
Property Value
Type Description
System.String

IncludeSubclasses

Gets or sets whether to include subclasses during the filtering.

Declaration
public bool? IncludeSubclasses { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Name

Gets or sets a name by which the result set of workflows should be filtered.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Offset

Gets or sets the offset at which the filtered results should be returned.

Declaration
public int Offset { get; set; }
Property Value
Type Description
System.Int32

Size

Gets or sets the size of the number of matching workflows to returned.

Declaration
public int Size { get; set; }
Property Value
Type Description
System.Int32

Sort

Gets or sets the sort rules for the filtered set.

Declaration
public string Sort { get; set; }
Property Value
Type Description
System.String
arrow_upward