Exemplo n.º 1
0
 public HomeManagementServer(IConfigurationServise configurationServise)
 {
     _configurationServise = configurationServise;
     _serializationService = new XMLSerializationService <RequestBase>();
 }
Exemplo n.º 2
0
        protected override T GetData(Socket socket)
        {
            var xmlSer = new XMLSerializationService <ResponseBase>();

            return((T)xmlSer.DeserializeFromStream(new NetworkStream(socket)));
        }
Exemplo n.º 3
0
 public HomeManagementServer(IConfigurationServise configurationServise)
 {
     _configurationServise = configurationServise;
     _serializationService = new XMLSerializationService<RequestBase>();
 }