-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added in access to variables for every delegate even (readonly though)
- Loading branch information
1 parent
083afa4
commit 5b7d177
Showing
5 changed files
with
58 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Org.Reddragonit.BpmEngine | ||
{ | ||
public class ReadOnlyProcessVariablesContainer | ||
{ | ||
private ProcessVariablesContainer _variables; | ||
|
||
internal ReadOnlyProcessVariablesContainer(string elementID, ProcessState state) | ||
{ | ||
_variables = new BpmEngine.ProcessVariablesContainer(elementID,state); | ||
} | ||
|
||
internal ReadOnlyProcessVariablesContainer(ProcessVariablesContainer variables) | ||
{ | ||
_variables = variables; | ||
} | ||
|
||
public object this[string name] { get { return _variables[name]; } } | ||
|
||
public string[] Keys { get { return _variables.Keys; } } | ||
} | ||
} |