Class WorkflowStepBase
Workflow step carrier.
Carrier object for WorkflowStepBase. Services for the WorkflowStepBase Carrier is available from the Workflow Agent.Inheritance
WorkflowStepBase
Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class WorkflowStepBase
Constructors
WorkflowStepBase()
Default constructor
Declaration
public WorkflowStepBase()
See Also
Properties
Rank
Step order
Declaration
[DataMember]
public virtual int Rank { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
StepType
Step type
Declaration
[DataMember]
public virtual WorkflowStepType StepType { get; set; }
Property Value
| Type | Description |
|---|---|
| WorkflowStepType |
See Also
WorkflowId
The workflow to connect to
Declaration
[DataMember]
public virtual int WorkflowId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
WorkflowStepId
Primary key
Declaration
[DataMember]
public virtual int WorkflowStepId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |
Overrides
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public virtual string ToString(string prefix)
Parameters
| Type | Name | Description |
|---|---|---|
| string | prefix | The line prefix (typically used for indenting) |
Returns
| Type | Description |
|---|---|
| string | The carrier contents. |