Example #1
0
        public ImapLiteralStream(Stream stream, ImapLiteralOptions options)
            : base()
        {
            if (stream == null)
            throw new ArgumentNullException("stream");

              this.stream = stream;
              this.Options = options;
        }
Example #2
0
 public ImapLiteralString(string val, Encoding charset, ImapLiteralOptions options)
     : base(val)
 {
     this.Charset = charset;
       this.Options = options;
 }