Exemple #1
0
 static void Main(string[] args)
 {
     client = new XRPCClient("localhost", 9090);
     client.SslEnabled("ikende.com");
     client.Connect();
     client.NetError = (c, e) =>
     {
         Console.WriteLine(e.Error.Message);
     };
     client.TimeOut = 10000;
     Test();
     Console.Read();
 }