CmisSync.Lib.Streams.ChunkedStream.SetLength C# (CSharp) Method

SetLength() public method

Sets the length. Is not implemented at correctly. It simply passes the call to the source stream.
public SetLength ( long value ) : void
value long The length to set.
return void
        public override void SetLength(long value) {
            Debug.Assert(false, "TODO");
            this.source.SetLength(value);
        }
    }