Server/MainForm.cs
changeset 140 4dff57d255c9
parent 135 2edc5da1796e
child 141 6f1da2b5c2ec
     1.1 --- a/Server/MainForm.cs	Tue May 26 12:25:34 2015 +0200
     1.2 +++ b/Server/MainForm.cs	Thu Jun 11 17:21:15 2015 +0200
     1.3 @@ -2012,7 +2012,6 @@
     1.4  					SysTrayHideShow();
     1.5  				}
     1.6  			}
     1.7 -
     1.8  		}
     1.9  
    1.10  		/// <summary>
    1.11 @@ -2047,26 +2046,4 @@
    1.12  			}
    1.13  		}
    1.14      }
    1.15 -
    1.16 -    /// <summary>
    1.17 -    /// A UI thread copy of a client relevant data.
    1.18 -    /// Keeping this copy in the UI thread helps us deal with threading issues.
    1.19 -    /// </summary>
    1.20 -    public class ClientData
    1.21 -    {
    1.22 -        public ClientData(string aSessionId, ICallback aCallback)
    1.23 -        {
    1.24 -            SessionId = aSessionId;
    1.25 -            Name = "";
    1.26 -            Fields = new List<DataField>();
    1.27 -            Layout = new TableLayout(1, 2); //Default to one column and two rows
    1.28 -            Callback = aCallback;
    1.29 -        }
    1.30 -
    1.31 -        public string SessionId { get; set; }
    1.32 -        public string Name { get; set; }
    1.33 -        public List<DataField> Fields { get; set; }
    1.34 -        public TableLayout Layout { get; set; }
    1.35 -        public ICallback Callback { get; set; }
    1.36 -    }
    1.37  }