Beispiel #1
0
 public MimePushReader(Stream s, byte[] b, IMimePushHandler h, Encoding e)
 {
     this.stream   = s;
     this.handler  = h;
     this.boundary = b;
     this.encoding = e;
 }
Beispiel #2
0
        public MimePushReader(Stream s, IMimePushHandler h, byte[] b, Encoding e) :
            base(s, h)
        {
            _boundary = b;
            _encoding = e;

            _firstBoundaryByte = _boundary[0];
        }
Beispiel #3
0
		public MimePushReader(Stream s, IMimePushHandler h, byte[] b, Encoding e) :
            base(s, h)
		{
			_boundary = b;
			_encoding = e;

            _firstBoundaryByte = _boundary[0];
		}
Beispiel #4
0
 public SingleFilePushReader(Stream s, IMimePushHandler h) :
     base(s, h)
 {
 }
        public SingleFilePushReader(Stream s, IMimePushHandler h) :
            base(s, h)
		{
		}
Beispiel #6
0
		public PushReaderBase(Stream s, IMimePushHandler h)
		{
			_stream = s;
			_handler = h;
		}
Beispiel #7
0
 public PushReaderBase(Stream s, IMimePushHandler h)
 {
     _stream  = s;
     _handler = h;
 }