Cimbalino.Phone.Toolkit.Compression.DeflateStream.SetLength C# (CSharp) Method

SetLength() public method

Calling this method always throws a NotImplementedException.
public SetLength ( long value ) : void
value long this is irrelevant, since it will always throw!
return void
        public override void SetLength(long value)
        {
            throw new NotImplementedException();
        }