Exemplo n.º 1
0
 /// <summary>
 /// Used for commands to be registered to procon.
 /// </summary>
 /// <param name="strRegisteredClassname"></param>
 /// <param name="strRegisteredMethodName"></param>
 /// <param name="lstScope"></param>
 /// <param name="strCommand"></param>
 /// <param name="lstArgumentsFormat"></param>
 /// <param name="erRequirements"></param>
 /// <param name="strDescription"></param>
 public MatchCommand(string strRegisteredClassname, string strRegisteredMethodName, List<string> lstScope, string strCommand, List<MatchArgumentFormat> lstArgumentsFormat, ExecutionRequirements erRequirements, string strDescription)
 {
     this.RegisteredClassname = strRegisteredClassname;
     this.RegisteredMethodName = strRegisteredMethodName;
     this.Scope = lstScope;
     this.Command = strCommand;
     this.ArgumentsFormat = lstArgumentsFormat;
     this.Requirements = erRequirements;
     this.Description = strDescription;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Used for commands to be registered to procon.
 /// </summary>
 /// <param name="strRegisteredClassname"></param>
 /// <param name="strRegisteredMethodName"></param>
 /// <param name="lstScope"></param>
 /// <param name="strCommand"></param>
 /// <param name="lstArgumentsFormat"></param>
 /// <param name="erRequirements"></param>
 /// <param name="strDescription"></param>
 public MatchCommand(string strRegisteredClassname, string strRegisteredMethodName, List <string> lstScope, string strCommand, List <MatchArgumentFormat> lstArgumentsFormat, ExecutionRequirements erRequirements, string strDescription)
 {
     this.RegisteredClassname  = strRegisteredClassname;
     this.RegisteredMethodName = strRegisteredMethodName;
     this.Scope           = lstScope;
     this.Command         = strCommand;
     this.ArgumentsFormat = lstArgumentsFormat;
     this.Requirements    = erRequirements;
     this.Description     = strDescription;
 }