MemoryStream

Overview

Stream implementation that stores data in memory

Location

  • Reference:
    • Elements.dll  .NET, .NET Core 6.0, .NET Standard 2.0
    • elements.jar  Cooper
    • Elements.fx  Island, ToffeeV2
    • libElements.fx  Toffee
  • Namespace: RemObjects.Elements.RTL
  • Platforms: .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, Toffee, ToffeeV2
  • Ancestry:

 

constructor

 

constructor

 

MemoryStream()

 

init()

 

MemoryStream()

 

Sub New()

constructor (Int32)

 

constructor(aCapacity: Int32)

 

MemoryStream(Int32 aCapacity)

 

init(_ aCapacity: Int32)

 

MemoryStream(Integer aCapacity)

 

Sub New(aCapacity As Int32)

Parameters:

  • aCapacity:

constructor (PlatformStream)    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

 

constructor(aStream: PlatformStream)

 

MemoryStream(PlatformStream aStream)

 

init(_ aStream: PlatformStream)

 

Sub New(aStream As PlatformStream)

Parameters:

  • aStream:

constructor (array of Byte)

 

constructor(aValue: array of Byte)

 

MemoryStream(Byte[] aValue)

 

init(_ aValue: Byte...)

 

MemoryStream(Byte[] aValue)

 

Sub New(aValue As Byte())

Parameters:

  • aValue:

constructor (array of Byte, Boolean)

 

constructor(aValue: array of Byte; aCanWrite: Boolean)

 

MemoryStream(Byte[] aValue, Boolean aCanWrite)

 

init(_ aValue: Byte..., _ aCanWrite: Boolean)

 

MemoryStream(Byte[] aValue, Boolean aCanWrite)

 

Sub New(aValue As Byte(), aCanWrite As Boolean)

Parameters:

  • aValue:
  • aCanWrite:

constructor (ImmutableBinary)

 

constructor(aValue: ImmutableBinary)

 

MemoryStream(ImmutableBinary aValue)

 

init(_ aValue: ImmutableBinary)

 

MemoryStream(ImmutableBinary aValue)

 

Sub New(aValue As ImmutableBinary)

Parameters:

  • aValue:

Bytes

Gets access to the underlying storage; does not create a copy, so the byte array could exceed the size of the stream.

 

property Bytes: array of Byte read;

 

Byte[] Bytes { get; }

 

var Bytes: Byte... { get{} }

 

Byte[] Bytes { __get; }

 

ReadOnly Property Bytes() As Byte()

CanRead  override

Returns true.

 

property CanRead: Boolean read;

 

Boolean CanRead { get; }

 

var CanRead: Boolean { get{} }

 

Boolean CanRead { __get; }

 

ReadOnly Property CanRead() As Boolean

CanSeek  override

Returns true.

 

property CanSeek: Boolean read;

 

Boolean CanSeek { get; }

 

var CanSeek: Boolean { get{} }

 

Boolean CanSeek { __get; }

 

ReadOnly Property CanSeek() As Boolean

CanWrite  override

Returns true.

 

property CanWrite: Boolean read;

 

Boolean CanWrite { get; }

 

var CanWrite: Boolean { get{} }

 

Boolean CanWrite { __get; }

 

ReadOnly Property CanWrite() As Boolean

Clear

Removes all data from this stream and resets the length to 0.

 

method Clear

 

void Clear()

 

func Clear()

 

void Clear()

 

Sub Clear()

Close  override

Close the stream and all resources attached to it.

 

method Close

 

void Close()

 

func Close()

 

void Close()

 

Sub Close()

CopyTo  virtual    (declared in Stream)

Copy the content of this stream to another

 

method CopyTo(Destination: Stream)

 

void CopyTo(Stream Destination)

 

func CopyTo(_ Destination: Stream)

 

void CopyTo(Stream Destination)

 

Sub CopyTo(Destination As Stream)

Parameters:

  • Destination:

Dispose    (declared in Stream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Close the stream and underlying resources.

 

method Dispose

 

void Dispose()

 

func Dispose()

 

Sub Dispose()

Flush  override

Do nothing.

 

method Flush

 

void Flush()

 

func Flush()

 

void Flush()

 

Sub Flush()

GetLength  override virtual    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Returns the length of this stream.

 

method GetLength: Int64

 

Int64 GetLength()

 

func GetLength() -> Int64

 

Function GetLength() As Int64

GetPosition  override virtual    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Returns the current position in this stream.

 

method GetPosition: Int64

 

Int64 GetPosition()

 

func GetPosition() -> Int64

 

Function GetPosition() As Int64

Length  override Cooper, Toffee, ToffeeV2

Returns the size of this stream.

 

var Length: Int64 { get{} }

 

Int64 Length { __get; }

Position  override Cooper, Toffee, ToffeeV2

Returns the current position.

 

var Position: Int64 { get{} set{} }

 

Int64 Position { __get; __set; }

Read (array of Byte, Int32): Int32    (declared in Stream)

Read from this stream. Returns the nr of bytes retreived., or 0 when the end has been reached.

 

method Read(Buffer: array of Byte; Count: Int32): Int32

 

Int32 Read(Byte[] Buffer, Int32 Count)

 

func Read(_ Buffer: Byte..., _ Count: Int32) -> Int32

 

Integer Read(Byte[] Buffer, Integer Count)

 

Function Read(Buffer As Byte(), Count As Int32) As Int32

Parameters:

  • Buffer:
  • Count:

Read (array of Byte, Integer, Integer): Integer  override Cooper, Toffee, ToffeeV2

Read from this stream. Returns the nr of bytes retreived, or 0 when the end has been reached.

 

func Read(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32

 

Integer Read(Byte[] Buffer, Integer Offset, Integer Count)

Parameters:

  • Buffer:
  • Offset:
  • Count:

ReadByte  virtual    (declared in Stream)

Reads a byte or returns -1 if the stream has reached the end

 

method ReadByte: Int32

 

Int32 ReadByte()

 

func ReadByte() -> Int32

 

Integer ReadByte()

 

Function ReadByte() As Int32

ReadByte (Byte): Boolean    (declared in Stream)

 

method ReadByte(out aResult: Byte): Boolean

 

Boolean ReadByte(out Byte aResult)

 

func ReadByte(_ aResult: inout Byte) -> Boolean

 

Boolean ReadByte(__out Byte aResult)

 

Function ReadByte(<OutAttribute> ByRef aResult As Byte) As Boolean

Parameters:

  • aResult:

ReadGuid    (declared in Stream)

 

method ReadGuid(out aResult: Guid): Boolean

 

Boolean ReadGuid(out Guid aResult)

 

func ReadGuid(_ aResult: inout Guid) -> Boolean

 

Boolean ReadGuid(__out Guid aResult)

 

Function ReadGuid(<OutAttribute> ByRef aResult As Guid) As Boolean

Parameters:

  • aResult:

ReadUInt16BE    (declared in Stream)

 

method ReadUInt16BE(out aResult: UInt16): Boolean

 

Boolean ReadUInt16BE(out UInt16 aResult)

 

func ReadUInt16BE(_ aResult: inout UInt16) -> Boolean

 

Boolean ReadUInt16BE(__out Word aResult)

 

Function ReadUInt16BE(<OutAttribute> ByRef aResult As UInt16) As Boolean

Parameters:

  • aResult:

ReadUInt16LE    (declared in Stream)

 

method ReadUInt16LE(out aResult: UInt16): Boolean

 

Boolean ReadUInt16LE(out UInt16 aResult)

 

func ReadUInt16LE(_ aResult: inout UInt16) -> Boolean

 

Boolean ReadUInt16LE(__out Word aResult)

 

Function ReadUInt16LE(<OutAttribute> ByRef aResult As UInt16) As Boolean

Parameters:

  • aResult:

ReadUInt32BE    (declared in Stream)

 

method ReadUInt32BE(out aResult: UInt32): Boolean

 

Boolean ReadUInt32BE(out UInt32 aResult)

 

func ReadUInt32BE(_ aResult: inout UInt32) -> Boolean

 

Boolean ReadUInt32BE(__out Cardinal aResult)

 

Function ReadUInt32BE(<OutAttribute> ByRef aResult As UInt32) As Boolean

Parameters:

  • aResult:

ReadUInt32LE    (declared in Stream)

 

method ReadUInt32LE(out aResult: UInt32): Boolean

 

Boolean ReadUInt32LE(out UInt32 aResult)

 

func ReadUInt32LE(_ aResult: inout UInt32) -> Boolean

 

Boolean ReadUInt32LE(__out Cardinal aResult)

 

Function ReadUInt32LE(<OutAttribute> ByRef aResult As UInt32) As Boolean

Parameters:

  • aResult:

ReadUInt64BE    (declared in Stream)

 

method ReadUInt64BE(out aResult: UInt64): Boolean

 

Boolean ReadUInt64BE(out UInt64 aResult)

 

func ReadUInt64BE(_ aResult: inout UInt64) -> Boolean

 

Boolean ReadUInt64BE(__out UInt64 aResult)

 

Function ReadUInt64BE(<OutAttribute> ByRef aResult As UInt64) As Boolean

Parameters:

  • aResult:

ReadUInt64LE    (declared in Stream)

 

method ReadUInt64LE(out aResult: UInt64): Boolean

 

Boolean ReadUInt64LE(out UInt64 aResult)

 

func ReadUInt64LE(_ aResult: inout UInt64) -> Boolean

 

Boolean ReadUInt64LE(__out UInt64 aResult)

 

Function ReadUInt64LE(<OutAttribute> ByRef aResult As UInt64) As Boolean

Parameters:

  • aResult:

Seek  override Cooper, Toffee, ToffeeV2

this method can be used to change the position of the stream, relative to the current position, start or end of the stream. Returns the new position.

 

func Seek(_ Offset: Int64, _ Origin: SeekOrigin) -> Int64

 

Int64 Seek(Int64 Offset, SeekOrigin Origin)

Parameters:

  • Offset:
  • Origin:

SetLength Cooper, Toffee, ToffeeV2

Change the length of this stream.

 

func SetLength(_ Value: Int64)

 

void SetLength(Int64 Value)

Parameters:

  • Value:

SetPosition  override virtual    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Sets the absolute position in the stream.

 

method SetPosition(Value: Int64)

 

void SetPosition(Int64 Value)

 

func SetPosition(_ Value: Int64)

 

Sub SetPosition(Value As Int64)

Parameters:

  • Value:

ToArray

Copies the data into an array and returns it.

 

method ToArray: array of Byte

 

Byte[] ToArray()

 

func ToArray() -> Byte...

 

Byte[] ToArray()

 

Function ToArray() As Byte()

Write (array of Byte): Int32    (declared in Stream)

 

method Write(Buffer: array of Byte): Int32

 

Int32 Write(Byte[] Buffer)

 

func Write(_ Buffer: Byte...) -> Int32

 

Integer Write(Byte[] Buffer)

 

Function Write(Buffer As Byte()) As Int32

Parameters:

  • Buffer:

Write (array of Byte, Int32): Int32    (declared in Stream)

Writes data to the stream.

 

method Write(Buffer: array of Byte; Count: Int32): Int32

 

Int32 Write(Byte[] Buffer, Int32 Count)

 

func Write(_ Buffer: Byte..., _ Count: Int32) -> Int32

 

Integer Write(Byte[] Buffer, Integer Count)

 

Function Write(Buffer As Byte(), Count As Int32) As Int32

Parameters:

  • Buffer:
  • Count:

Write (array of Byte, Integer, Integer): Integer  override Cooper, Toffee, ToffeeV2

Writes data to the stream.

 

func Write(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32

 

Integer Write(Byte[] Buffer, Integer Offset, Integer Count)

Parameters:

  • Buffer:
  • Offset:
  • Count:

WriteByte  virtual    (declared in Stream)

Writes data to the stream.

 

method WriteByte(aValue: Byte)

 

void WriteByte(Byte aValue)

 

func WriteByte(_ aValue: Byte)

 

void WriteByte(Byte aValue)

 

Sub WriteByte(aValue As Byte)

Parameters:

  • aValue:

WriteGuid    (declared in Stream)

 

method WriteGuid(value: Guid): Boolean

 

Boolean WriteGuid(Guid value)

 

func WriteGuid(_ value: Guid) -> Boolean

 

Boolean WriteGuid(Guid value)

 

Function WriteGuid(value As Guid) As Boolean

Parameters:

  • value:

WriteTo

Copy this stream to another stream.

 

method WriteTo(Destination: Stream)

 

void WriteTo(Stream Destination)

 

func WriteTo(_ Destination: Stream)

 

void WriteTo(Stream Destination)

 

Sub WriteTo(Destination As Stream)

Parameters:

  • Destination:

WriteUInt16BE    (declared in Stream)

 

method WriteUInt16BE(value: UInt16): Boolean

 

Boolean WriteUInt16BE(UInt16 value)

 

func WriteUInt16BE(_ value: UInt16) -> Boolean

 

Boolean WriteUInt16BE(Word value)

 

Function WriteUInt16BE(value As UInt16) As Boolean

Parameters:

  • value:

WriteUInt16LE    (declared in Stream)

 

method WriteUInt16LE(value: UInt16): Boolean

 

Boolean WriteUInt16LE(UInt16 value)

 

func WriteUInt16LE(_ value: UInt16) -> Boolean

 

Boolean WriteUInt16LE(Word value)

 

Function WriteUInt16LE(value As UInt16) As Boolean

Parameters:

  • value:

WriteUInt32BE    (declared in Stream)

 

method WriteUInt32BE(value: UInt32): Boolean

 

Boolean WriteUInt32BE(UInt32 value)

 

func WriteUInt32BE(_ value: UInt32) -> Boolean

 

Boolean WriteUInt32BE(Cardinal value)

 

Function WriteUInt32BE(value As UInt32) As Boolean

Parameters:

  • value:

WriteUInt32LE    (declared in Stream)

 

method WriteUInt32LE(value: UInt32): Boolean

 

Boolean WriteUInt32LE(UInt32 value)

 

func WriteUInt32LE(_ value: UInt32) -> Boolean

 

Boolean WriteUInt32LE(Cardinal value)

 

Function WriteUInt32LE(value As UInt32) As Boolean

Parameters:

  • value:

WriteUInt64BE    (declared in Stream)

 

method WriteUInt64BE(value: UInt64): Boolean

 

Boolean WriteUInt64BE(UInt64 value)

 

func WriteUInt64BE(_ value: UInt64) -> Boolean

 

Boolean WriteUInt64BE(UInt64 value)

 

Function WriteUInt64BE(value As UInt64) As Boolean

Parameters:

  • value:

WriteUInt64LE    (declared in Stream)

 

method WriteUInt64LE(value: UInt64): Boolean

 

Boolean WriteUInt64LE(UInt64 value)

 

func WriteUInt64LE(_ value: UInt64) -> Boolean

 

Boolean WriteUInt64LE(UInt64 value)

 

Function WriteUInt64LE(value As UInt64) As Boolean

Parameters:

  • value:

 

Bytes

Gets access to the underlying storage; does not create a copy, so the byte array could exceed the size of the stream.

 

property Bytes: array of Byte read;

 

Byte[] Bytes { get; }

 

var Bytes: Byte... { get{} }

 

Byte[] Bytes { __get; }

 

ReadOnly Property Bytes() As Byte()

CanRead  override

Returns true.

 

property CanRead: Boolean read;

 

Boolean CanRead { get; }

 

var CanRead: Boolean { get{} }

 

Boolean CanRead { __get; }

 

ReadOnly Property CanRead() As Boolean

CanSeek  override

Returns true.

 

property CanSeek: Boolean read;

 

Boolean CanSeek { get; }

 

var CanSeek: Boolean { get{} }

 

Boolean CanSeek { __get; }

 

ReadOnly Property CanSeek() As Boolean

CanWrite  override

Returns true.

 

property CanWrite: Boolean read;

 

Boolean CanWrite { get; }

 

var CanWrite: Boolean { get{} }

 

Boolean CanWrite { __get; }

 

ReadOnly Property CanWrite() As Boolean

Length  override Cooper, Toffee, ToffeeV2

Returns the size of this stream.

 

var Length: Int64 { get{} }

 

Int64 Length { __get; }

Position  override Cooper, Toffee, ToffeeV2

Returns the current position.

 

var Position: Int64 { get{} set{} }

 

Int64 Position { __get; __set; }

 

constructor

 

constructor

 

MemoryStream()

 

init()

 

MemoryStream()

 

Sub New()

constructor (Int32)

 

constructor(aCapacity: Int32)

 

MemoryStream(Int32 aCapacity)

 

init(_ aCapacity: Int32)

 

MemoryStream(Integer aCapacity)

 

Sub New(aCapacity As Int32)

Parameters:

  • aCapacity:

constructor (PlatformStream)    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

 

constructor(aStream: PlatformStream)

 

MemoryStream(PlatformStream aStream)

 

init(_ aStream: PlatformStream)

 

Sub New(aStream As PlatformStream)

Parameters:

  • aStream:

constructor (array of Byte)

 

constructor(aValue: array of Byte)

 

MemoryStream(Byte[] aValue)

 

init(_ aValue: Byte...)

 

MemoryStream(Byte[] aValue)

 

Sub New(aValue As Byte())

Parameters:

  • aValue:

constructor (array of Byte, Boolean)

 

constructor(aValue: array of Byte; aCanWrite: Boolean)

 

MemoryStream(Byte[] aValue, Boolean aCanWrite)

 

init(_ aValue: Byte..., _ aCanWrite: Boolean)

 

MemoryStream(Byte[] aValue, Boolean aCanWrite)

 

Sub New(aValue As Byte(), aCanWrite As Boolean)

Parameters:

  • aValue:
  • aCanWrite:

constructor (ImmutableBinary)

 

constructor(aValue: ImmutableBinary)

 

MemoryStream(ImmutableBinary aValue)

 

init(_ aValue: ImmutableBinary)

 

MemoryStream(ImmutableBinary aValue)

 

Sub New(aValue As ImmutableBinary)

Parameters:

  • aValue:

Clear

Removes all data from this stream and resets the length to 0.

 

method Clear

 

void Clear()

 

func Clear()

 

void Clear()

 

Sub Clear()

Close  override

Close the stream and all resources attached to it.

 

method Close

 

void Close()

 

func Close()

 

void Close()

 

Sub Close()

CopyTo  virtual    (declared in Stream)

Copy the content of this stream to another

 

method CopyTo(Destination: Stream)

 

void CopyTo(Stream Destination)

 

func CopyTo(_ Destination: Stream)

 

void CopyTo(Stream Destination)

 

Sub CopyTo(Destination As Stream)

Parameters:

  • Destination:

Dispose    (declared in Stream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Close the stream and underlying resources.

 

method Dispose

 

void Dispose()

 

func Dispose()

 

Sub Dispose()

Flush  override

Do nothing.

 

method Flush

 

void Flush()

 

func Flush()

 

void Flush()

 

Sub Flush()

GetLength  override virtual    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Returns the length of this stream.

 

method GetLength: Int64

 

Int64 GetLength()

 

func GetLength() -> Int64

 

Function GetLength() As Int64

GetPosition  override virtual    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Returns the current position in this stream.

 

method GetPosition: Int64

 

Int64 GetPosition()

 

func GetPosition() -> Int64

 

Function GetPosition() As Int64

Read (array of Byte, Int32): Int32    (declared in Stream)

Read from this stream. Returns the nr of bytes retreived., or 0 when the end has been reached.

 

method Read(Buffer: array of Byte; Count: Int32): Int32

 

Int32 Read(Byte[] Buffer, Int32 Count)

 

func Read(_ Buffer: Byte..., _ Count: Int32) -> Int32

 

Integer Read(Byte[] Buffer, Integer Count)

 

Function Read(Buffer As Byte(), Count As Int32) As Int32

Parameters:

  • Buffer:
  • Count:

Read (array of Byte, Integer, Integer): Integer  override Cooper, Toffee, ToffeeV2

Read from this stream. Returns the nr of bytes retreived, or 0 when the end has been reached.

 

func Read(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32

 

Integer Read(Byte[] Buffer, Integer Offset, Integer Count)

Parameters:

  • Buffer:
  • Offset:
  • Count:

ReadByte  virtual    (declared in Stream)

Reads a byte or returns -1 if the stream has reached the end

 

method ReadByte: Int32

 

Int32 ReadByte()

 

func ReadByte() -> Int32

 

Integer ReadByte()

 

Function ReadByte() As Int32

ReadByte (Byte): Boolean    (declared in Stream)

 

method ReadByte(out aResult: Byte): Boolean

 

Boolean ReadByte(out Byte aResult)

 

func ReadByte(_ aResult: inout Byte) -> Boolean

 

Boolean ReadByte(__out Byte aResult)

 

Function ReadByte(<OutAttribute> ByRef aResult As Byte) As Boolean

Parameters:

  • aResult:

ReadGuid    (declared in Stream)

 

method ReadGuid(out aResult: Guid): Boolean

 

Boolean ReadGuid(out Guid aResult)

 

func ReadGuid(_ aResult: inout Guid) -> Boolean

 

Boolean ReadGuid(__out Guid aResult)

 

Function ReadGuid(<OutAttribute> ByRef aResult As Guid) As Boolean

Parameters:

  • aResult:

ReadUInt16BE    (declared in Stream)

 

method ReadUInt16BE(out aResult: UInt16): Boolean

 

Boolean ReadUInt16BE(out UInt16 aResult)

 

func ReadUInt16BE(_ aResult: inout UInt16) -> Boolean

 

Boolean ReadUInt16BE(__out Word aResult)

 

Function ReadUInt16BE(<OutAttribute> ByRef aResult As UInt16) As Boolean

Parameters:

  • aResult:

ReadUInt16LE    (declared in Stream)

 

method ReadUInt16LE(out aResult: UInt16): Boolean

 

Boolean ReadUInt16LE(out UInt16 aResult)

 

func ReadUInt16LE(_ aResult: inout UInt16) -> Boolean

 

Boolean ReadUInt16LE(__out Word aResult)

 

Function ReadUInt16LE(<OutAttribute> ByRef aResult As UInt16) As Boolean

Parameters:

  • aResult:

ReadUInt32BE    (declared in Stream)

 

method ReadUInt32BE(out aResult: UInt32): Boolean

 

Boolean ReadUInt32BE(out UInt32 aResult)

 

func ReadUInt32BE(_ aResult: inout UInt32) -> Boolean

 

Boolean ReadUInt32BE(__out Cardinal aResult)

 

Function ReadUInt32BE(<OutAttribute> ByRef aResult As UInt32) As Boolean

Parameters:

  • aResult:

ReadUInt32LE    (declared in Stream)

 

method ReadUInt32LE(out aResult: UInt32): Boolean

 

Boolean ReadUInt32LE(out UInt32 aResult)

 

func ReadUInt32LE(_ aResult: inout UInt32) -> Boolean

 

Boolean ReadUInt32LE(__out Cardinal aResult)

 

Function ReadUInt32LE(<OutAttribute> ByRef aResult As UInt32) As Boolean

Parameters:

  • aResult:

ReadUInt64BE    (declared in Stream)

 

method ReadUInt64BE(out aResult: UInt64): Boolean

 

Boolean ReadUInt64BE(out UInt64 aResult)

 

func ReadUInt64BE(_ aResult: inout UInt64) -> Boolean

 

Boolean ReadUInt64BE(__out UInt64 aResult)

 

Function ReadUInt64BE(<OutAttribute> ByRef aResult As UInt64) As Boolean

Parameters:

  • aResult:

ReadUInt64LE    (declared in Stream)

 

method ReadUInt64LE(out aResult: UInt64): Boolean

 

Boolean ReadUInt64LE(out UInt64 aResult)

 

func ReadUInt64LE(_ aResult: inout UInt64) -> Boolean

 

Boolean ReadUInt64LE(__out UInt64 aResult)

 

Function ReadUInt64LE(<OutAttribute> ByRef aResult As UInt64) As Boolean

Parameters:

  • aResult:

Seek  override Cooper, Toffee, ToffeeV2

this method can be used to change the position of the stream, relative to the current position, start or end of the stream. Returns the new position.

 

func Seek(_ Offset: Int64, _ Origin: SeekOrigin) -> Int64

 

Int64 Seek(Int64 Offset, SeekOrigin Origin)

Parameters:

  • Offset:
  • Origin:

SetLength Cooper, Toffee, ToffeeV2

Change the length of this stream.

 

func SetLength(_ Value: Int64)

 

void SetLength(Int64 Value)

Parameters:

  • Value:

SetPosition  override virtual    (declared in WrappedPlatformStream) .NET, .NET Core 6.0, .NET Standard 2.0, Island

Sets the absolute position in the stream.

 

method SetPosition(Value: Int64)

 

void SetPosition(Int64 Value)

 

func SetPosition(_ Value: Int64)

 

Sub SetPosition(Value As Int64)

Parameters:

  • Value:

ToArray

Copies the data into an array and returns it.

 

method ToArray: array of Byte

 

Byte[] ToArray()

 

func ToArray() -> Byte...

 

Byte[] ToArray()

 

Function ToArray() As Byte()

Write (array of Byte): Int32    (declared in Stream)

 

method Write(Buffer: array of Byte): Int32

 

Int32 Write(Byte[] Buffer)

 

func Write(_ Buffer: Byte...) -> Int32

 

Integer Write(Byte[] Buffer)

 

Function Write(Buffer As Byte()) As Int32

Parameters:

  • Buffer:

Write (array of Byte, Int32): Int32    (declared in Stream)

Writes data to the stream.

 

method Write(Buffer: array of Byte; Count: Int32): Int32

 

Int32 Write(Byte[] Buffer, Int32 Count)

 

func Write(_ Buffer: Byte..., _ Count: Int32) -> Int32

 

Integer Write(Byte[] Buffer, Integer Count)

 

Function Write(Buffer As Byte(), Count As Int32) As Int32

Parameters:

  • Buffer:
  • Count:

Write (array of Byte, Integer, Integer): Integer  override Cooper, Toffee, ToffeeV2

Writes data to the stream.

 

func Write(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32

 

Integer Write(Byte[] Buffer, Integer Offset, Integer Count)

Parameters:

  • Buffer:
  • Offset:
  • Count:

WriteByte  virtual    (declared in Stream)

Writes data to the stream.

 

method WriteByte(aValue: Byte)

 

void WriteByte(Byte aValue)

 

func WriteByte(_ aValue: Byte)

 

void WriteByte(Byte aValue)

 

Sub WriteByte(aValue As Byte)

Parameters:

  • aValue:

WriteGuid    (declared in Stream)

 

method WriteGuid(value: Guid): Boolean

 

Boolean WriteGuid(Guid value)

 

func WriteGuid(_ value: Guid) -> Boolean

 

Boolean WriteGuid(Guid value)

 

Function WriteGuid(value As Guid) As Boolean

Parameters:

  • value:

WriteTo

Copy this stream to another stream.

 

method WriteTo(Destination: Stream)

 

void WriteTo(Stream Destination)

 

func WriteTo(_ Destination: Stream)

 

void WriteTo(Stream Destination)

 

Sub WriteTo(Destination As Stream)

Parameters:

  • Destination:

WriteUInt16BE    (declared in Stream)

 

method WriteUInt16BE(value: UInt16): Boolean

 

Boolean WriteUInt16BE(UInt16 value)

 

func WriteUInt16BE(_ value: UInt16) -> Boolean

 

Boolean WriteUInt16BE(Word value)

 

Function WriteUInt16BE(value As UInt16) As Boolean

Parameters:

  • value:

WriteUInt16LE    (declared in Stream)

 

method WriteUInt16LE(value: UInt16): Boolean

 

Boolean WriteUInt16LE(UInt16 value)

 

func WriteUInt16LE(_ value: UInt16) -> Boolean

 

Boolean WriteUInt16LE(Word value)

 

Function WriteUInt16LE(value As UInt16) As Boolean

Parameters:

  • value:

WriteUInt32BE    (declared in Stream)

 

method WriteUInt32BE(value: UInt32): Boolean

 

Boolean WriteUInt32BE(UInt32 value)

 

func WriteUInt32BE(_ value: UInt32) -> Boolean

 

Boolean WriteUInt32BE(Cardinal value)

 

Function WriteUInt32BE(value As UInt32) As Boolean

Parameters:

  • value:

WriteUInt32LE    (declared in Stream)

 

method WriteUInt32LE(value: UInt32): Boolean

 

Boolean WriteUInt32LE(UInt32 value)

 

func WriteUInt32LE(_ value: UInt32) -> Boolean

 

Boolean WriteUInt32LE(Cardinal value)

 

Function WriteUInt32LE(value As UInt32) As Boolean

Parameters:

  • value:

WriteUInt64BE    (declared in Stream)

 

method WriteUInt64BE(value: UInt64): Boolean

 

Boolean WriteUInt64BE(UInt64 value)

 

func WriteUInt64BE(_ value: UInt64) -> Boolean

 

Boolean WriteUInt64BE(UInt64 value)

 

Function WriteUInt64BE(value As UInt64) As Boolean

Parameters:

  • value:

WriteUInt64LE    (declared in Stream)

 

method WriteUInt64LE(value: UInt64): Boolean

 

Boolean WriteUInt64LE(UInt64 value)

 

func WriteUInt64LE(_ value: UInt64) -> Boolean

 

Boolean WriteUInt64LE(UInt64 value)

 

Function WriteUInt64LE(value As UInt64) As Boolean

Parameters:

  • value: