Interface IActivityBuilder
Represents a builder for configuring an activity.
Inherited Members
IBaseActivityBuilder.OutgoingTransitions
IBaseActivityBuilder.IncomingTransitions
IProcessDefinitionBuilder.CreateActor(string, string)
IProcessDefinitionBuilder.CreateOrUpdateActor(string, string)
IProcessDefinitionBuilder.UpdateActor(string)
IProcessDefinitionBuilder.DeleteActor(string)
IProcessDefinitionBuilder.CreateParameter(string, Type, ParameterPurpose)
IProcessDefinitionBuilder.CreateOrUpdateParameter(string, Type, ParameterPurpose)
IProcessDefinitionBuilder.UpdateParameter(string)
IProcessDefinitionBuilder.DeleteParameter(string)
IProcessDefinitionBuilder.CreateCommand(string)
IProcessDefinitionBuilder.CreateOrUpdateCommand(string)
IProcessDefinitionBuilder.UpdateCommand(string)
IProcessDefinitionBuilder.DeleteCommand(string)
IProcessDefinitionBuilder.CreateTimer(string)
IProcessDefinitionBuilder.CreateOrUpdateTimer(string)
IProcessDefinitionBuilder.UpdateTimer(string)
IProcessDefinitionBuilder.DeleteTimer(string)
IProcessDefinitionBuilder.CreateActivity(string)
IProcessDefinitionBuilder.AddActivity(ActivityDefinition)
IProcessDefinitionBuilder.CreateInlineActivity(string, string)
IProcessDefinitionBuilder.CreateOrUpdateActivity(string)
IProcessDefinitionBuilder.CreateOrUpdateInlineActivity(string, string)
IProcessDefinitionBuilder.UpdateActivity(string)
IProcessDefinitionBuilder.UpdateInlineActivity(string)
IProcessDefinitionBuilder.UpdateActivity(ActivityDefinition)
IProcessDefinitionBuilder.UpdateInlineActivity(ActivityDefinition)
IProcessDefinitionBuilder.DeleteActivity(string)
IProcessDefinitionBuilder.DeleteActivity(ActivityDefinition)
IProcessDefinitionBuilder.CreateTransition(string, ActivityDefinition, ActivityDefinition)
IProcessDefinitionBuilder.CreateOrUpdateTransition(string, ActivityDefinition, ActivityDefinition)
IProcessDefinitionBuilder.UpdateTransition(string)
IProcessDefinitionBuilder.UpdateTransition(TransitionDefinition)
IProcessDefinitionBuilder.DeleteTransition(string)
IProcessDefinitionBuilder.DeleteTransition(TransitionDefinition)
IProcessDefinitionBuilder.ForEachActivity(Action<IActivityBuilder>)
IProcessDefinitionBuilder.ForEachTransition(Action<ITransitionBuilder>)
IProcessDefinitionBuilder.Inlined()
IProcessDefinitionBuilder.NotInlined()
IProcessDefinitionBuilder.GetActivity(string, out ActivityDefinition)
IProcessDefinitionBuilder.GetTransition(string, out TransitionDefinition)
IProcessDefinitionBuilder.ProcessDefinition
Namespace: OptimaJet.Workflow.Core.Model.Builder
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic interface IActivityBuilder : IBaseActivityBuilder, IProcessDefinitionBuilder
Methods
Name(string)
Sets the name of the current activity.
DeclarationIActivityBuilder Name(string name)
Type | Name | Description |
---|---|---|
string | name | The name of the activity. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
State(string)
Sets the state of the current activity.
DeclarationIActivityBuilder State(string state)
Type | Name | Description |
---|---|---|
string | state | The state of the activity. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
NotState()
Resets the state of the current activity and marks it as not for set state.
DeclarationIActivityBuilder NotState()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DisableSetState()
Disables the set state functionality for the current activity.
DeclarationIActivityBuilder DisableSetState()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
EnableSetState()
Enables the set state functionality for the current activity.
DeclarationIActivityBuilder EnableSetState()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
Initial()
Marks the current activity as initial.
DeclarationIActivityBuilder Initial()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
Final()
Marks the current activity as final.
DeclarationIActivityBuilder Final()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
Basic()
Marks the current activity as neither initial nor final.
DeclarationIActivityBuilder Basic()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
EnableAutoSchemeUpdate()
Enables automatic scheme updates for the current activity.
DeclarationIActivityBuilder EnableAutoSchemeUpdate()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DisableAutoSchemeUpdate()
Disables automatic scheme updates for the current activity.
DeclarationIActivityBuilder DisableAutoSchemeUpdate()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
CreateOrUpdateAnnotation(string, string)
Creates or updates an annotation for the current activity.
DeclarationIActivityBuilder CreateOrUpdateAnnotation(string name, string value)
Type | Name | Description |
---|---|---|
string | name | The name of the annotation. |
string | value | The value of the annotation. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
CreateOrUpdateAnnotation(string, object)
Creates or updates an annotation for the current activity.
DeclarationIActivityBuilder CreateOrUpdateAnnotation(string name, object value)
Type | Name | Description |
---|---|---|
string | name | The name of the annotation. |
object | value | The value of the annotation as an object. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DeleteAnnotation(string)
Deletes an annotation from the current activity.
DeclarationIActivityBuilder DeleteAnnotation(string name)
Type | Name | Description |
---|---|---|
string | name | The name of the annotation to delete. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DisablePersistence()
Disables persistence for the current activity.
DeclarationIActivityBuilder DisablePersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
EnablePersistence()
Enables persistence for the current activity.
DeclarationIActivityBuilder EnablePersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DisableTransitionHistoryPersistence()
Disables transition history persistence for the current activity.
DeclarationIActivityBuilder DisableTransitionHistoryPersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
EnableTransitionHistoryPersistence()
Enables transition history persistence for the current activity.
DeclarationIActivityBuilder EnableTransitionHistoryPersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DisableParametersPersistence()
Disables parameter persistence for the current activity.
DeclarationIActivityBuilder DisableParametersPersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
EnableParametersPersistence()
Enables parameter persistence for the current activity.
DeclarationIActivityBuilder EnableParametersPersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DisableStatePersistence()
Disables state persistence for the current activity.
DeclarationIActivityBuilder DisableStatePersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
EnableStatePersistence()
Enables state persistence for the current activity.
DeclarationIActivityBuilder EnableStatePersistence()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
IdleTimeout(TimeSpan)
Sets the idle timeout for the current activity.
DeclarationIIdleTimeoutBuilder IdleTimeout(TimeSpan timeout)
Type | Name | Description |
---|---|---|
TimeSpan | timeout | The timeout value. |
Type | Description |
---|---|
IIdleTimeoutBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IIdleTimeoutBuilder" data-throw-if-not-resolved="false"></xref> for configuring the timeout. |
IdleTimeout(int)
Sets the idle timeout for the current activity.
DeclarationIIdleTimeoutBuilder IdleTimeout(int timeout)
Type | Name | Description |
---|---|---|
int | timeout | The timeout value in seconds. |
Type | Description |
---|---|
IIdleTimeoutBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IIdleTimeoutBuilder" data-throw-if-not-resolved="false"></xref> for configuring the timeout. |
DeleteIdleTimeout()
Deletes the idle timeout for the current activity.
DeclarationIActivityBuilder DeleteIdleTimeout()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
UpdateIdleTimeout()
Updates the idle timeout for the current activity.
DeclarationIIdleTimeoutBuilder UpdateIdleTimeout()
Type | Description |
---|---|
IIdleTimeoutBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IIdleTimeoutBuilder" data-throw-if-not-resolved="false"></xref> for configuring the timeout. |
ExecutionTimeout(TimeSpan)
Sets the execution timeout for the current activity.
DeclarationIExecutionTimeoutBuilder ExecutionTimeout(TimeSpan timeout)
Type | Name | Description |
---|---|---|
TimeSpan | timeout | The timeout value. |
Type | Description |
---|---|
IExecutionTimeoutBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IExecutionTimeoutBuilder" data-throw-if-not-resolved="false"></xref> for configuring the timeout. |
ExecutionTimeout(int)
Sets the execution timeout for the current activity.
DeclarationIExecutionTimeoutBuilder ExecutionTimeout(int timeout)
Type | Name | Description |
---|---|---|
int | timeout | The timeout value in seconds. |
Type | Description |
---|---|
IExecutionTimeoutBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IExecutionTimeoutBuilder" data-throw-if-not-resolved="false"></xref> for configuring the timeout. |
UpdateExecutionTimeout()
Updates the execution timeout for the current activity.
DeclarationIExecutionTimeoutBuilder UpdateExecutionTimeout()
Type | Description |
---|---|
IExecutionTimeoutBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IExecutionTimeoutBuilder" data-throw-if-not-resolved="false"></xref> for configuring the timeout. |
DeleteExecutionTimeout()
Deletes the execution timeout for the current activity.
DeclarationIActivityBuilder DeleteExecutionTimeout()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
CreateOrUpdateExceptionHandler(params string[])
Creates or updates an exception handler for the current activity.
DeclarationIActivityExceptionHandlerBuilder CreateOrUpdateExceptionHandler(params string[] exceptions)
Type | Name | Description |
---|---|---|
System.String[] | exceptions | The exceptions to handle. |
Type | Description |
---|---|
IActivityExceptionHandlerBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityExceptionHandlerBuilder" data-throw-if-not-resolved="false"></xref> for configuring the exception handler. |
CreateOrUpdateExceptionHandler(params Type[])
Creates or updates an exception handler for the current activity.
DeclarationIActivityExceptionHandlerBuilder CreateOrUpdateExceptionHandler(params Type[] exceptions)
Type | Name | Description |
---|---|---|
System.Type[] | exceptions | The exceptions to handle. |
Type | Description |
---|---|
IActivityExceptionHandlerBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityExceptionHandlerBuilder" data-throw-if-not-resolved="false"></xref> for configuring the exception handler. |
DeleteExceptionHandler(params string[])
Deletes an exception handler for the specified exceptions from the current activity.
DeclarationIActivityBuilder DeleteExceptionHandler(params string[] exceptions)
Type | Name | Description |
---|---|---|
System.String[] | exceptions | The exceptions to remove from the handler. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DeleteExceptionHandler(params Type[])
Deletes an exception handler for the specified exceptions from the current activity.
DeclarationIActivityBuilder DeleteExceptionHandler(params Type[] exceptions)
Type | Name | Description |
---|---|---|
System.Type[] | exceptions | The exceptions to remove from the handler. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DeleteExceptionHandlers()
Deletes all exception handlers from the current activity.
DeclarationIActivityBuilder DeleteExceptionHandlers()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DeleteImplementation(string?)
Deletes the implementation with the specified action name from the current activity.
DeclarationIActivityBuilder DeleteImplementation(string? actionName = null)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to delete. If null, all implementations are deleted. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
UpdateImplementation(string)
Updates the implementation with the specified action name for the current activity.
DeclarationIActivityImplementationBuilder UpdateImplementation(string actionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to update. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreateImplementationAtBegin(string)
Creates an implementation at the beginning of the list for the current activity.
DeclarationIActivityImplementationBuilder CreateImplementationAtBegin(string actionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreateImplementationAtEnd(string)
Creates a pre-execution implementation at the end of the list for the current activity.
DeclarationIActivityImplementationBuilder CreateImplementationAtEnd(string actionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreateImplementationBefore(string, string)
Creates a pre-execution implementation before the specified target action for the current activity.
DeclarationIActivityImplementationBuilder CreateImplementationBefore(string actionName, string targetActionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
string | targetActionName | The name of the target action before which the new action will be created. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreateImplementationAfter(string, string)
Creates a pre-execution implementation after the specified target action for the current activity.
DeclarationIActivityImplementationBuilder CreateImplementationAfter(string actionName, string targetActionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
string | targetActionName | The name of the target action after which the new action will be created. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
DeletePreExecution(string?)
Deletes the pre-execution implementation with the specified action name from the current activity.
DeclarationIActivityBuilder DeletePreExecution(string? actionName = null)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to delete. If null, all pre-execution implementations are deleted. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
UpdatePreExecution(string)
Updates the pre-execution implementation with the specified action name for the current activity.
DeclarationIActivityImplementationBuilder UpdatePreExecution(string actionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to update. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreatePreExecutionAtBegin(string)
Creates a pre-execution implementation at the beginning of the list for the current activity.
DeclarationIActivityImplementationBuilder CreatePreExecutionAtBegin(string actionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreatePreExecutionAtEnd(string)
Creates a pre-execution implementation at the end of the list for the current activity.
DeclarationIActivityImplementationBuilder CreatePreExecutionAtEnd(string actionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreatePreExecutionBefore(string, string)
Creates a pre-execution implementation before the specified target action for the current activity.
DeclarationIActivityImplementationBuilder CreatePreExecutionBefore(string actionName, string targetActionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
string | targetActionName | The name of the target action before which the new action will be created. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreatePreExecutionAfter(string, string)
Creates a pre-execution implementation after the specified target action for the current activity.
DeclarationIActivityImplementationBuilder CreatePreExecutionAfter(string actionName, string targetActionName)
Type | Name | Description |
---|---|---|
string | actionName | The name of the action to create. |
string | targetActionName | The name of the target action after which the new action will be created. |
Type | Description |
---|---|
IActivityImplementationBuilder | An <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityImplementationBuilder" data-throw-if-not-resolved="false"></xref> for configuring the implementation. |
CreateCommentary(string)
Creates a commentary for the current activity.
DeclarationIActivityBuilder CreateCommentary(string comment)
Type | Name | Description |
---|---|---|
string | comment | The commentary text. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
AppendCommentary(string)
Appends a commentary to the current activity.
DeclarationIActivityBuilder AppendCommentary(string comment)
Type | Name | Description |
---|---|---|
string | comment | The commentary text to append. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
DeleteCommentary()
Deletes the commentary from the current activity.
DeclarationIActivityBuilder DeleteCommentary()
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
SetX(int?)
Sets the X coordinate for the current activity's designer settings.
DeclarationIActivityBuilder SetX(int? x)
Type | Name | Description |
---|---|---|
int? | x | The X coordinate. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
SetY(int?)
Sets the Y coordinate for the current activity's designer settings.
DeclarationIActivityBuilder SetY(int? y)
Type | Name | Description |
---|---|---|
int? | y | The Y coordinate. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
CustomType(string)
Sets a custom type for the current activity.
DeclarationIActivityBuilder CustomType(string customType)
Type | Name | Description |
---|---|---|
string | customType | The custom type. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |
Ref(out ActivityDefinition)
Gets the current activity definition.
DeclarationIActivityBuilder Ref(out ActivityDefinition activityDefinition)
Type | Name | Description |
---|---|---|
ActivityDefinition | activityDefinition | The output activity definition. |
Type | Description |
---|---|
IActivityBuilder | The current <xref href="OptimaJet.Workflow.Core.Model.Builder.IActivityBuilder" data-throw-if-not-resolved="false"></xref> instance. |