Class FlowConfiguration
Represents the flow configuration that the runtime needs. Not to be mistaken with the FlowConfigurationModel
Inheritance
System.Object
FlowConfiguration
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: Simplic.Flow.Configuration
Assembly: Simplic.Flow.Configuration.dll
Syntax
public class FlowConfiguration
Properties
| Improve this Doc View SourceDescription
Gets or sets the description of this configuration.
Declaration
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Id
Gets or sets the Id of the flow
Declaration
public Guid Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Guid |
IsActive
Gets or sets whether the flow configuration is active
Declaration
public bool IsActive { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
IsDeleted
Gets or sets whether the flow configuration is deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Links
Gets or sets the links between nodes
Declaration
public List<LinkConfiguration> Links { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<LinkConfiguration> |
MachineName
Gets or sets the current machine name
Declaration
public string MachineName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Name
Gets or sets the name of the flow
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Nodes
Gets or sets the list of nodes inside this configuration
Declaration
public List<NodeConfiguration> Nodes { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<NodeConfiguration> |
Pins
Gets or sets the pins that the nodes contain
Declaration
public List<PinConfiguration> Pins { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<PinConfiguration> |
ServiceName
Gets or sets the service name
Declaration
public string ServiceName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Variables
Gets or sets the configuration wide variables
Declaration
public List<FlowVariableConfiguration> Variables { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<FlowVariableConfiguration> |