CmisSync.Lib.Streams.StreamWrapper.SetLength C# (CSharp) Метод

SetLength() публичный Метод

Sets the length of the wrapped instance.
public SetLength ( long value ) : void
value long /// Value passed to the wrapped instance. ///
Результат void
        public override void SetLength(long value) {
            this.Stream.SetLength(value);
        }