adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / BlowfishStream Class / SetLength Method
The desired length of the current stream in bytes.The length to set.

In This Topic
    SetLength Method
    In This Topic
    When overridden in a derived class, sets the length of the current stream. Set the stream length.
    Syntax
    'Declaration
     
    
    Public Overrides Sub SetLength( _
       ByVal value As Long _
    ) 
    public override void SetLength( 
       long value
    )

    Parameters

    value
    The desired length of the current stream in bytes.The length to set.
    Exceptions
    ExceptionDescription
    An I/O error occurs.
    The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.
    Methods were called after the stream was closed.
    See Also