Esempio n. 1
0
 private void UserValidation(BinaryReader br, ClientSocket client)
 {
     //bool IsValidated = br.ReadBoolean();
     client.IsValidated = br.ReadBoolean();
 }
Esempio n. 2
0
        private void RequestToken(BinaryReader br, ClientSocket client)
        {
            string token = br.ReadString().DecryptText();

            client.SetChatToken(token);
        }
Esempio n. 3
0
 private void StartGroupChat(ClientSocket client)
 {
     client.StartChat();
 }