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

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (this._inputStream != null)
            {
                using (this._inputStream)
                {
                    this._inputStream.Close();
                }
            }
            this._inputStream = null;
            this._knownTypes = null;
        }