ByteStorage Type
Instance members
Instance member |
Description
|
|
|
Static members
Static member |
Description
|
|
Creates a ByteStorage whose backing bytes are the given byte array. Does not make a copy.
|
Full Usage:
ByteStorage.FromByteArrayAndCopy(arg1, useBackingMemoryMappedFile)
Parameters:
byte[]
useBackingMemoryMappedFile : bool
Returns: ByteStorage
|
Creates a ByteStorage that has a copy of the given byte array.
|
Full Usage:
ByteStorage.FromByteMemory(arg1)
Parameters:
ReadOnlyByteMemory
Returns: ByteStorage
|
Creates a ByteStorage whose backing bytes are the given ByteMemory. Does not make a copy.
|
Full Usage:
ByteStorage.FromByteMemoryAndCopy(arg1, useBackingMemoryMappedFile)
Parameters:
ReadOnlyByteMemory
useBackingMemoryMappedFile : bool
Returns: ByteStorage
|
Creates a ByteStorage that has a copy of the given ByteMemory.
|
Full Usage:
ByteStorage.FromMemoryAndCopy(arg1, useBackingMemoryMappedFile)
Parameters:
ReadOnlyMemory<byte>
useBackingMemoryMappedFile : bool
Returns: ByteStorage
|
Creates a ByteStorage that has a copy of the given Memory
|