System.IO.Packaging.ZipPartStream.SetLength C# (CSharp) Méthode

SetLength() public méthode

public SetLength ( long value ) : void
value long
Résultat void
        public override void SetLength(long value)
        {
            if (!CanWrite)
                throw new InvalidOperationException("Stream is not writeable");

            BaseStream.SetLength(value);
        }