Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="rName">Name of the alias</param>
 /// <param name="rCustomTest">Custom function used to test for success</param>
 public InputAlias(string rName, CustomTestFunction rCustomTest)
 {
     Name       = rName;
     PrimaryID  = 0;
     SupportID  = 0;
     CustomTest = rCustomTest;
 }
Example #2
0
 /// <summary>
 /// Consturctor
 /// </summary>
 /// <param name="rName">Name of the alias</param>
 /// <param name="rPrimaryID">Primary ID of the alias</param>
 /// <param name="rSupportID">Support ID of the alias</param>
 public InputAlias(string rName, int rPrimaryID, int rSupportID)
 {
     Name       = rName;
     PrimaryID  = rPrimaryID;
     SupportID  = rSupportID;
     CustomTest = null;
 }
Example #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="rName">Name of the alias</param>
 /// <param name="rCustomTest">Custom function used to test for success</param>
 public InputAlias(string rName, CustomTestFunction rCustomTest)
 {
     Name          = rName;
     Description   = "";
     IsDoublePress = false;
     PrimaryID     = 0;
     SupportID     = 0;
     CustomTest    = rCustomTest;
 }
Example #4
0
 /// <summary>
 /// Consturctor
 /// </summary>
 /// <param name="rName">Name of the alias</param>
 /// <param name="rPrimaryID">Primary ID of the alias</param>
 /// <param name="rSupportID">Support ID of the alias</param>
 public InputAlias(string rName, int rPrimaryID, int rSupportID)
 {
     Name          = rName;
     Description   = "";
     IsDoublePress = false;
     PrimaryID     = rPrimaryID;
     SupportID     = rSupportID;
     CustomTest    = null;
 }