HttpIncomingStream
Overview
Implements an incoming stream of HTTP message (HttpIncomingRequestResponse). You will usually deal with the separate descendants HttpServerRequest or HttpClientResponse that descend from HttpIncomingRequestResponse.
Location
-
Reference:
- RemObjects.InternetPack.dll .NET, .NET Core 5.0, .NET Standard 2.0
- RemObjects.InternetPack.fx Island
- libRemObjects.InternetPack.fx Toffee
- Namespace: RemObjects.InternetPack.Http
-
Ancestry:
- Stream | HttpIncomingStream .NET, .NET Standard 2.0, Island, Toffee
- Stream | HttpIncomingStream .NET Core 5.0
- Stream | HttpIncomingStream .NET, .NET Standard 2.0, Island, Toffee
constructor
constructor(owner: HttpIncomingRequestResponse)
HttpIncomingStream(HttpIncomingRequestResponse owner)
init(_ owner: HttpIncomingRequestResponse)
Sub New(owner As HttpIncomingRequestResponse)
Parameters:
- owner:
CanRead override
Gets a value indicating whether the current stream supports reading.
property CanRead: Boolean read;
Boolean CanRead { get; }
var CanRead: Boolean { get{} }
ReadOnly Property CanRead() As Boolean
CanSeek override
Gets a value indicating whether the current stream supports seeking.
property CanSeek: Boolean read;
Boolean CanSeek { get; }
var CanSeek: Boolean { get{} }
ReadOnly Property CanSeek() As Boolean
CanWrite override
Gets a value indicating whether the current stream supports writing.
property CanWrite: Boolean read;
Boolean CanWrite { get; }
var CanWrite: Boolean { get{} }
ReadOnly Property CanWrite() As Boolean
Close override
Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
method Close
void Close()
func Close()
Sub Close()
CopyTo virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Copy the content of this stream to another
method CopyTo(Destination: Stream)
void CopyTo(Stream Destination)
func CopyTo(_ Destination: Stream)
Sub CopyTo(Destination As Stream)
Parameters:
- Destination:
Dispose (declared in Stream) .NET, .NET Standard 2.0, Island
Close the stream and underlying resources.
method Dispose
void Dispose()
func Dispose()
Sub Dispose()
Flush override
Clears all buffers for this stream.
method Flush
void Flush()
func Flush()
Sub Flush()
GetLength virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Returns the length of this stream.
method GetLength: Int64
Int64 GetLength()
func GetLength() -> Int64
Function GetLength() As Int64
GetPosition virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Returns the current position in this stream.
method GetPosition: Int64
Int64 GetPosition()
func GetPosition() -> Int64
Function GetPosition() As Int64
Length override
Gets the length in bytes of the stream.
property Length: Int64 read;
Int64 Length { get; }
var Length: Int64 { get{} }
ReadOnly Property Length() As Int64
Position override
Gets or sets the position within the current stream.
property Position: Int64 read write;
Int64 Position { get; set; }
var Position: Int64 { get{} set{} }
Property Position() As Int64
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
Function Read(Buffer As Byte(), Count As Int32) As Int32
Parameters:
- Buffer:
- Count:
Read (array of Byte, Int32, Int32): Int32 virtual abstract (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Read from this stream. Returns the nr of bytes retreived, or 0 when the end has been reached.
method Read(Buffer: array of Byte; Offset: Int32; Count: Int32): Int32
Int32 Read(Byte[] Buffer, Int32 Offset, Int32 Count)
func Read(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32
Function Read(Buffer As Byte(), Offset As Int32, Count As Int32) As Int32
Parameters:
- Buffer:
- Offset:
- Count:
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
method Read(buffer: array of Byte; offset: Int32; size: Int32): Int32
Int32 Read(Byte[] buffer, Int32 offset, Int32 size)
func Read(_ buffer: Byte..., _ offset: Int32, _ size: Int32) -> Int32
Function Read(buffer As Byte(), offset As Int32, size As Int32) As Int32
Parameters:
- buffer:
- offset:
- size:
ReadByte virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Reads a byte or returns -1 if the stream has reached the end
method ReadByte: Int32
Int32 ReadByte()
func ReadByte() -> Int32
Function ReadByte() As Int32
method ReadByte(out aResult: Byte): Boolean
Boolean ReadByte(out Byte aResult)
func ReadByte(_ aResult: inout Byte) -> Boolean
Function ReadByte(<OutAttribute> ByRef aResult As Byte) As Boolean
Parameters:
- aResult:
ReadGuid (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadGuid(out aResult: Guid): Boolean
Boolean ReadGuid(out Guid aResult)
func ReadGuid(_ aResult: inout Guid) -> Boolean
Function ReadGuid(<OutAttribute> ByRef aResult As Guid) As Boolean
Parameters:
- aResult:
ReadUInt16BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt16BE(out aResult: UInt16): Boolean
Boolean ReadUInt16BE(out UInt16 aResult)
func ReadUInt16BE(_ aResult: inout UInt16) -> Boolean
Function ReadUInt16BE(<OutAttribute> ByRef aResult As UInt16) As Boolean
Parameters:
- aResult:
ReadUInt16LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt16LE(out aResult: UInt16): Boolean
Boolean ReadUInt16LE(out UInt16 aResult)
func ReadUInt16LE(_ aResult: inout UInt16) -> Boolean
Function ReadUInt16LE(<OutAttribute> ByRef aResult As UInt16) As Boolean
Parameters:
- aResult:
ReadUInt32BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt32BE(out aResult: UInt32): Boolean
Boolean ReadUInt32BE(out UInt32 aResult)
func ReadUInt32BE(_ aResult: inout UInt32) -> Boolean
Function ReadUInt32BE(<OutAttribute> ByRef aResult As UInt32) As Boolean
Parameters:
- aResult:
ReadUInt32LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt32LE(out aResult: UInt32): Boolean
Boolean ReadUInt32LE(out UInt32 aResult)
func ReadUInt32LE(_ aResult: inout UInt32) -> Boolean
Function ReadUInt32LE(<OutAttribute> ByRef aResult As UInt32) As Boolean
Parameters:
- aResult:
ReadUInt64BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt64BE(out aResult: UInt64): Boolean
Boolean ReadUInt64BE(out UInt64 aResult)
func ReadUInt64BE(_ aResult: inout UInt64) -> Boolean
Function ReadUInt64BE(<OutAttribute> ByRef aResult As UInt64) As Boolean
Parameters:
- aResult:
ReadUInt64LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt64LE(out aResult: UInt64): Boolean
Boolean ReadUInt64LE(out UInt64 aResult)
func ReadUInt64LE(_ aResult: inout UInt64) -> Boolean
Function ReadUInt64LE(<OutAttribute> ByRef aResult As UInt64) As Boolean
Parameters:
- aResult:
Seek override
Sets the position within the current stream.
method Seek(offset: Int64; origin: SeekOrigin): Int64
Int64 Seek(Int64 offset, SeekOrigin origin)
func Seek(_ offset: Int64, _ origin: SeekOrigin) -> Int64
Function Seek(offset As Int64, origin As SeekOrigin) As Int64
Parameters:
- offset:
- origin:
SetPosition virtual (declared in Stream) .NET, .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:
method Write(Buffer: array of Byte): Int32
Int32 Write(Byte[] Buffer)
func Write(_ Buffer: Byte...) -> Int32
Function Write(Buffer As Byte()) As Int32
Parameters:
- Buffer:
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
Function Write(Buffer As Byte(), Count As Int32) As Int32
Parameters:
- Buffer:
- Count:
Write (array of Byte, Int32, Int32): Int32 virtual abstract (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Writes data to the stream.
method Write(Buffer: array of Byte; Offset: Int32; Count: Int32): Int32
Int32 Write(Byte[] Buffer, Int32 Offset, Int32 Count)
func Write(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32
Function Write(Buffer As Byte(), Offset As Int32, Count As Int32) As Int32
Parameters:
- Buffer:
- Offset:
- Count:
method Write(buffer: array of Byte; offset: Int32; size: Int32): Int32
Int32 Write(Byte[] buffer, Int32 offset, Int32 size)
func Write(_ buffer: Byte..., _ offset: Int32, _ size: Int32) -> Int32
Function Write(buffer As Byte(), offset As Int32, size As Int32) As Int32
Parameters:
- buffer:
- offset:
- size:
WriteByte virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Writes data to the stream.
method WriteByte(aValue: Byte)
void WriteByte(Byte aValue)
func WriteByte(_ aValue: Byte)
Sub WriteByte(aValue As Byte)
Parameters:
- aValue:
WriteGuid (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteGuid(value: Guid): Boolean
Boolean WriteGuid(Guid value)
func WriteGuid(_ value: Guid) -> Boolean
Function WriteGuid(value As Guid) As Boolean
Parameters:
- value:
WriteUInt16BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt16BE(value: UInt16): Boolean
Boolean WriteUInt16BE(UInt16 value)
func WriteUInt16BE(_ value: UInt16) -> Boolean
Function WriteUInt16BE(value As UInt16) As Boolean
Parameters:
- value:
WriteUInt16LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt16LE(value: UInt16): Boolean
Boolean WriteUInt16LE(UInt16 value)
func WriteUInt16LE(_ value: UInt16) -> Boolean
Function WriteUInt16LE(value As UInt16) As Boolean
Parameters:
- value:
WriteUInt32BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt32BE(value: UInt32): Boolean
Boolean WriteUInt32BE(UInt32 value)
func WriteUInt32BE(_ value: UInt32) -> Boolean
Function WriteUInt32BE(value As UInt32) As Boolean
Parameters:
- value:
WriteUInt32LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt32LE(value: UInt32): Boolean
Boolean WriteUInt32LE(UInt32 value)
func WriteUInt32LE(_ value: UInt32) -> Boolean
Function WriteUInt32LE(value As UInt32) As Boolean
Parameters:
- value:
WriteUInt64BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt64BE(value: UInt64): Boolean
Boolean WriteUInt64BE(UInt64 value)
func WriteUInt64BE(_ value: UInt64) -> Boolean
Function WriteUInt64BE(value As UInt64) As Boolean
Parameters:
- value:
WriteUInt64LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt64LE(value: UInt64): Boolean
Boolean WriteUInt64LE(UInt64 value)
func WriteUInt64LE(_ value: UInt64) -> Boolean
Function WriteUInt64LE(value As UInt64) As Boolean
Parameters:
- value:
CanRead override
Gets a value indicating whether the current stream supports reading.
property CanRead: Boolean read;
Boolean CanRead { get; }
var CanRead: Boolean { get{} }
ReadOnly Property CanRead() As Boolean
CanSeek override
Gets a value indicating whether the current stream supports seeking.
property CanSeek: Boolean read;
Boolean CanSeek { get; }
var CanSeek: Boolean { get{} }
ReadOnly Property CanSeek() As Boolean
CanWrite override
Gets a value indicating whether the current stream supports writing.
property CanWrite: Boolean read;
Boolean CanWrite { get; }
var CanWrite: Boolean { get{} }
ReadOnly Property CanWrite() As Boolean
Length override
Gets the length in bytes of the stream.
property Length: Int64 read;
Int64 Length { get; }
var Length: Int64 { get{} }
ReadOnly Property Length() As Int64
Position override
Gets or sets the position within the current stream.
property Position: Int64 read write;
Int64 Position { get; set; }
var Position: Int64 { get{} set{} }
Property Position() As Int64
constructor
constructor(owner: HttpIncomingRequestResponse)
HttpIncomingStream(HttpIncomingRequestResponse owner)
init(_ owner: HttpIncomingRequestResponse)
Sub New(owner As HttpIncomingRequestResponse)
Parameters:
- owner:
Close override
Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
method Close
void Close()
func Close()
Sub Close()
CopyTo virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Copy the content of this stream to another
method CopyTo(Destination: Stream)
void CopyTo(Stream Destination)
func CopyTo(_ Destination: Stream)
Sub CopyTo(Destination As Stream)
Parameters:
- Destination:
Dispose (declared in Stream) .NET, .NET Standard 2.0, Island
Close the stream and underlying resources.
method Dispose
void Dispose()
func Dispose()
Sub Dispose()
Flush override
Clears all buffers for this stream.
method Flush
void Flush()
func Flush()
Sub Flush()
GetLength virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Returns the length of this stream.
method GetLength: Int64
Int64 GetLength()
func GetLength() -> Int64
Function GetLength() As Int64
GetPosition virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Returns the current position in this stream.
method GetPosition: Int64
Int64 GetPosition()
func GetPosition() -> Int64
Function GetPosition() As Int64
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
Function Read(Buffer As Byte(), Count As Int32) As Int32
Parameters:
- Buffer:
- Count:
Read (array of Byte, Int32, Int32): Int32 virtual abstract (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Read from this stream. Returns the nr of bytes retreived, or 0 when the end has been reached.
method Read(Buffer: array of Byte; Offset: Int32; Count: Int32): Int32
Int32 Read(Byte[] Buffer, Int32 Offset, Int32 Count)
func Read(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32
Function Read(Buffer As Byte(), Offset As Int32, Count As Int32) As Int32
Parameters:
- Buffer:
- Offset:
- Count:
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
method Read(buffer: array of Byte; offset: Int32; size: Int32): Int32
Int32 Read(Byte[] buffer, Int32 offset, Int32 size)
func Read(_ buffer: Byte..., _ offset: Int32, _ size: Int32) -> Int32
Function Read(buffer As Byte(), offset As Int32, size As Int32) As Int32
Parameters:
- buffer:
- offset:
- size:
ReadByte virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Reads a byte or returns -1 if the stream has reached the end
method ReadByte: Int32
Int32 ReadByte()
func ReadByte() -> Int32
Function ReadByte() As Int32
method ReadByte(out aResult: Byte): Boolean
Boolean ReadByte(out Byte aResult)
func ReadByte(_ aResult: inout Byte) -> Boolean
Function ReadByte(<OutAttribute> ByRef aResult As Byte) As Boolean
Parameters:
- aResult:
ReadGuid (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadGuid(out aResult: Guid): Boolean
Boolean ReadGuid(out Guid aResult)
func ReadGuid(_ aResult: inout Guid) -> Boolean
Function ReadGuid(<OutAttribute> ByRef aResult As Guid) As Boolean
Parameters:
- aResult:
ReadUInt16BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt16BE(out aResult: UInt16): Boolean
Boolean ReadUInt16BE(out UInt16 aResult)
func ReadUInt16BE(_ aResult: inout UInt16) -> Boolean
Function ReadUInt16BE(<OutAttribute> ByRef aResult As UInt16) As Boolean
Parameters:
- aResult:
ReadUInt16LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt16LE(out aResult: UInt16): Boolean
Boolean ReadUInt16LE(out UInt16 aResult)
func ReadUInt16LE(_ aResult: inout UInt16) -> Boolean
Function ReadUInt16LE(<OutAttribute> ByRef aResult As UInt16) As Boolean
Parameters:
- aResult:
ReadUInt32BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt32BE(out aResult: UInt32): Boolean
Boolean ReadUInt32BE(out UInt32 aResult)
func ReadUInt32BE(_ aResult: inout UInt32) -> Boolean
Function ReadUInt32BE(<OutAttribute> ByRef aResult As UInt32) As Boolean
Parameters:
- aResult:
ReadUInt32LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt32LE(out aResult: UInt32): Boolean
Boolean ReadUInt32LE(out UInt32 aResult)
func ReadUInt32LE(_ aResult: inout UInt32) -> Boolean
Function ReadUInt32LE(<OutAttribute> ByRef aResult As UInt32) As Boolean
Parameters:
- aResult:
ReadUInt64BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt64BE(out aResult: UInt64): Boolean
Boolean ReadUInt64BE(out UInt64 aResult)
func ReadUInt64BE(_ aResult: inout UInt64) -> Boolean
Function ReadUInt64BE(<OutAttribute> ByRef aResult As UInt64) As Boolean
Parameters:
- aResult:
ReadUInt64LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method ReadUInt64LE(out aResult: UInt64): Boolean
Boolean ReadUInt64LE(out UInt64 aResult)
func ReadUInt64LE(_ aResult: inout UInt64) -> Boolean
Function ReadUInt64LE(<OutAttribute> ByRef aResult As UInt64) As Boolean
Parameters:
- aResult:
Seek override
Sets the position within the current stream.
method Seek(offset: Int64; origin: SeekOrigin): Int64
Int64 Seek(Int64 offset, SeekOrigin origin)
func Seek(_ offset: Int64, _ origin: SeekOrigin) -> Int64
Function Seek(offset As Int64, origin As SeekOrigin) As Int64
Parameters:
- offset:
- origin:
SetPosition virtual (declared in Stream) .NET, .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:
method Write(Buffer: array of Byte): Int32
Int32 Write(Byte[] Buffer)
func Write(_ Buffer: Byte...) -> Int32
Function Write(Buffer As Byte()) As Int32
Parameters:
- Buffer:
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
Function Write(Buffer As Byte(), Count As Int32) As Int32
Parameters:
- Buffer:
- Count:
Write (array of Byte, Int32, Int32): Int32 virtual abstract (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Writes data to the stream.
method Write(Buffer: array of Byte; Offset: Int32; Count: Int32): Int32
Int32 Write(Byte[] Buffer, Int32 Offset, Int32 Count)
func Write(_ Buffer: Byte..., _ Offset: Int32, _ Count: Int32) -> Int32
Function Write(Buffer As Byte(), Offset As Int32, Count As Int32) As Int32
Parameters:
- Buffer:
- Offset:
- Count:
method Write(buffer: array of Byte; offset: Int32; size: Int32): Int32
Int32 Write(Byte[] buffer, Int32 offset, Int32 size)
func Write(_ buffer: Byte..., _ offset: Int32, _ size: Int32) -> Int32
Function Write(buffer As Byte(), offset As Int32, size As Int32) As Int32
Parameters:
- buffer:
- offset:
- size:
WriteByte virtual (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
Writes data to the stream.
method WriteByte(aValue: Byte)
void WriteByte(Byte aValue)
func WriteByte(_ aValue: Byte)
Sub WriteByte(aValue As Byte)
Parameters:
- aValue:
WriteGuid (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteGuid(value: Guid): Boolean
Boolean WriteGuid(Guid value)
func WriteGuid(_ value: Guid) -> Boolean
Function WriteGuid(value As Guid) As Boolean
Parameters:
- value:
WriteUInt16BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt16BE(value: UInt16): Boolean
Boolean WriteUInt16BE(UInt16 value)
func WriteUInt16BE(_ value: UInt16) -> Boolean
Function WriteUInt16BE(value As UInt16) As Boolean
Parameters:
- value:
WriteUInt16LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt16LE(value: UInt16): Boolean
Boolean WriteUInt16LE(UInt16 value)
func WriteUInt16LE(_ value: UInt16) -> Boolean
Function WriteUInt16LE(value As UInt16) As Boolean
Parameters:
- value:
WriteUInt32BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt32BE(value: UInt32): Boolean
Boolean WriteUInt32BE(UInt32 value)
func WriteUInt32BE(_ value: UInt32) -> Boolean
Function WriteUInt32BE(value As UInt32) As Boolean
Parameters:
- value:
WriteUInt32LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt32LE(value: UInt32): Boolean
Boolean WriteUInt32LE(UInt32 value)
func WriteUInt32LE(_ value: UInt32) -> Boolean
Function WriteUInt32LE(value As UInt32) As Boolean
Parameters:
- value:
WriteUInt64BE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt64BE(value: UInt64): Boolean
Boolean WriteUInt64BE(UInt64 value)
func WriteUInt64BE(_ value: UInt64) -> Boolean
Function WriteUInt64BE(value As UInt64) As Boolean
Parameters:
- value:
WriteUInt64LE (declared in Stream) .NET, .NET Standard 2.0, Island, Toffee
method WriteUInt64LE(value: UInt64): Boolean
Boolean WriteUInt64LE(UInt64 value)
func WriteUInt64LE(_ value: UInt64) -> Boolean
Function WriteUInt64LE(value As UInt64) As Boolean
Parameters:
- value: