Example #1
0
 private static StackObjectCommandIndex GetStackObjectIndex(Stack Stack)
 {
     if (Stack.StackObjectCommandIndexes.Count > 0)
     {
         foreach (StackObjectCommandIndex Index in Stack.StackObjectCommandIndexes)
         {
             if (Index.StackCommandType == Stack.StackObjects[Stack.StackIndex].StackObjectCommandType)
             {
                 return Index;
             }
         }
     }
     return null;
 }
Example #2
0
 public static string GetStopResult(Stack Stack)
 {
     return String.Format("The stack '{0}' stopped at {1} on {2}.", Stack.StackName, DateTime.Now.ToShortTimeString(), DateTime.Now.ToShortDateString());
 }
Example #3
0
 public static string GetSuccessResult(Stack Stack)
 {
     return String.Format("The stack '{0}' completed successfully at {1} on {2}.", Stack.StackName, DateTime.Now.ToShortTimeString(), DateTime.Now.ToShortDateString());
 }
Example #4
0
 private static Stack WebServiceStartCall(Stack s)
 {
     return new Stack();
 }
Example #5
0
 public static string GetCheckResult(Stack Stack)
 {
     return String.Format("No problems were found in the stack '{0}'. Stack was checked at {1} on {2}.", Stack.StackName, DateTime.Now.ToShortTimeString(), DateTime.Now.ToShortDateString());
 }
Example #6
0
 private static Stack Stop(Stack s)
 {
     return new Stack();
 }
Example #7
0
 private static Stack JumpTo(Stack s)
 {
     return new Stack();
 }
Example #8
0
 private static Stack If(Stack s)
 {
     return new Stack();
 }
Example #9
0
 private static Stack Function(Stack s)
 {
     return new Stack();
 }
Example #10
0
 private static Stack EndLoop(Stack s)
 {
     return new Stack();
 }