Example #1
0
 public KSKit()
 {
     DirectSocket = new KSSocket();
     BridgedSocket = new KSSocket();
     SelectedSocket = KSSocketAvailable.Direct;
     Code = "";
     Description = "";
     Url = "";
 }
Example #2
0
 public KSSocket(KSSocket obj)
     : this()
 {
     if (obj != null)
     {
         Type = obj.Type;
         Param = obj.Param;
         Protocol = obj.Protocol;
     }
 }
Example #3
0
 public KSKit(KSKit obj)
     : this()
 {
     if (obj != null)
     {
         DirectSocket = new KSSocket(obj.DirectSocket);
         BridgedSocket = new KSSocket(obj.BridgedSocket);
         SelectedSocket = obj.SelectedSocket;
         Code = obj.Code;
         Description = obj.Description;
         Url = obj.Url;
         Photo = obj.Photo;
     }
 }