private ClientOptions(ConnectionOptions options, ILog log, MsgPackContext context)
 {
     ConnectionOptions = options;
     MsgPackContext    = context ?? new MsgPackContext(binaryCompatibilityMode: true);
     if (log != null)
     {
         LogWriter = new LogWriterWrapper(this, log);
     }
 }
Esempio n. 2
0
 private ClientOptions(ConnectionOptions options, ILog log, MsgPackContext context)
 {
     ConnectionOptions = options;
     MsgPackContext    = context ?? new MsgPackContext();
     if (log != null)
     {
         LogWriter = new LogWriterWrapper(this, log);
     }
 }