Microsoft.Samples.Synchronization.ClientServices.Formatters.SyncReader.SyncReader C# (CSharp) Method

SyncReader() protected method

protected SyncReader ( Stream stream, Type knownTypes ) : System
stream Stream
knownTypes System.Type
return System
        protected SyncReader(Stream stream, Type[] knownTypes)
        {
            if (stream == null)
            {
                throw new ArgumentNullException("stream");
            }
            this._inputStream = stream;
            this._knownTypes = knownTypes;
        }