Exemplo n.º 1
0
 public PomeloClient(string host, int port, RSAParameters rsaParam, RSAPKCS1SignatureFormatter rsaFormatter, SHA256 sha256)
 {
     this.eventManager = new EventManager();
     initClient(host, port);
     this.protocol = new Protocol(this, socket);
     protocol.InitRsa(rsaParam, rsaFormatter, sha256);
 }