CmisSync.Lib.Streams.StreamWrapper.StreamWrapper C# (CSharp) Метод

StreamWrapper() публичный Метод

Initializes a new instance of the CmisSync.Lib.Streams.StreamWrapper class. Takes a stream and wrapps all calls.
public StreamWrapper ( Stream stream ) : System
stream Stream /// Stream to be wrapped. ///
Результат System
        public StreamWrapper(Stream stream) {
            if (stream == null) {
                throw new ArgumentNullException("stream");
            }

            this.Stream = stream;
        }