-
Notifications
You must be signed in to change notification settings - Fork 16
Server APIs – Aras.Workflow
Aras.Server.Core v12.0.0.17204
- ActivityAssignment
- IOnActivateServerMethod
- IOnAssignServerMethod
- IOnCloseServerMethod
- IOnDelegateServerMethod
- IOnDueServerMethod
- IOnEscalateServerMethod
- IOnRefuseServerMethod
- IOnRemindServerMethod
- IOnVoteServerMethod
- OnActivateEventArgs
- OnAssignEventArgs
- OnCloseEventArgs
- OnDelegateEventArgs
- OnDueEventArgs
- OnEscalateEventArgs
- OnRefuseEventArgs
- OnRemindEventArgs
- OnVoteEventArgs
- WorkflowEventArgs
- WorkflowProcessPath
Inheritance object → ActivityAssignment
public class ActivityAssignment
{
// Properties
public string Id { get; }
public string Path { get; }
}
public interface IOnActivateServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnActivateEventArgs eventData, XmlDocument outDom);
}
public interface IOnAssignServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnAssignEventArgs eventData, XmlDocument outDom);
}
public interface IOnCloseServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnCloseEventArgs eventData, XmlDocument outDom);
}
public interface IOnDelegateServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnDelegateEventArgs eventData, XmlDocument outDom);
}
public interface IOnDueServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnDueEventArgs eventData, XmlDocument outDom);
}
public interface IOnEscalateServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnEscalateEventArgs eventData, XmlDocument outDom);
}
public interface IOnRefuseServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnRefuseEventArgs eventData, XmlDocument outDom);
}
public interface IOnRemindServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnRemindEventArgs eventData, XmlDocument outDom);
}
public interface IOnVoteServerMethod
{
// Methods
public void FNCMethod(IServerConnection innovatorObjectArg, XmlDocument inDom, OnVoteEventArgs eventData, XmlDocument outDom);
}
Inheritance object → WorkflowEventArgs → OnActivateEventArgs
public class OnActivateEventArgs : WorkflowEventArgs
{
}
Inheritance object → WorkflowEventArgs → OnAssignEventArgs
public class OnAssignEventArgs : WorkflowEventArgs
{
}
Inheritance object → WorkflowEventArgs → OnCloseEventArgs
public class OnCloseEventArgs : WorkflowEventArgs
{
// Properties
public ActivityAssignment CurrentAssignment { get; }
}
Inheritance object → WorkflowEventArgs → OnDelegateEventArgs
Derived OnEscalateEventArgs, OnRefuseEventArgs
public class OnDelegateEventArgs : WorkflowEventArgs
{
// Properties
public ActivityAssignment CurrentAssignment { get; }
public ActivityAssignment NewAssignment { get; }
}
Inheritance object → WorkflowEventArgs → OnDueEventArgs
public class OnDueEventArgs : WorkflowEventArgs
{
// Properties
public ActivityAssignment CurrentAssignment { get; }
}
Inheritance object → WorkflowEventArgs → OnDelegateEventArgs → OnEscalateEventArgs
public class OnEscalateEventArgs : OnDelegateEventArgs
{
}
Inheritance object → WorkflowEventArgs → OnDelegateEventArgs → OnRefuseEventArgs
public class OnRefuseEventArgs : OnDelegateEventArgs
{
}
Inheritance object → WorkflowEventArgs → OnRemindEventArgs
public class OnRemindEventArgs : WorkflowEventArgs
{
// Properties
public ActivityAssignment CurrentAssignment { get; }
}
Inheritance object → WorkflowEventArgs → OnVoteEventArgs
public class OnVoteEventArgs : WorkflowEventArgs
{
// Properties
public ActivityAssignment CurrentAssignment { get; }
public IList<WorkflowProcessPath> VotePaths { get; }
}
Inheritance object → WorkflowEventArgs
Derived OnActivateEventArgs, OnAssignEventArgs, OnCloseEventArgs, OnDelegateEventArgs, OnDueEventArgs, OnRemindEventArgs, OnVoteEventArgs
public class WorkflowEventArgs
{
}
Inheritance object → WorkflowProcessPath
public class WorkflowProcessPath
{
// Properties
public string Name { get; }
}