Microsoft.Http.DelegatingStream.ThrowIfNotCanWrite C# (CSharp) Method

ThrowIfNotCanWrite() protected method

protected ThrowIfNotCanWrite ( ) : void
return void
        protected void ThrowIfNotCanWrite()
        {
            if (!this.CanWrite)
            {
                throw new NotSupportedException();
            }
        }
    }