Amazon.Runtime.Internal.Util.WrapperStream.SetLength C# (CSharp) 메소드

SetLength() 공개 메소드

Sets the length of the current stream.
public SetLength ( long value ) : void
value long The desired length of the current stream in bytes.
리턴 void
        public override void SetLength(long value)
        {
            BaseStream.SetLength(value);
        }