UtilSharedMemoryWrite(String, Byte) Method
Writes a byte sequence at the start position of an existing MemoryMappedFile.
Namespace: DevCase.Core.Diagnostics.ProcessesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void Write(
string name,
byte[] data
)
Public Shared Sub Write (
name As String,
data As Byte()
)
Dim name As String
Dim data As Byte()
UtilSharedMemory.Write(name, data)
public:
static void Write(
String^ name,
array<unsigned char>^ data
)
static member Write :
name : string *
data : byte[] -> unit
No code example is currently available or this language may not be supported.
Parameters
- name String
-
The name of the MemoryMappedFile segment.
- data Byte
-
The byte sequence to write in the MemoryMappedFile segment.
This is a code example.
No code example is currently available or this language may not be supported.
Using mmf As MemoryMappedFile = SharedMemoryUtil.Create("My MemoryMappedFile Name", capacity:=4096)
SharedMemoryUtil.Write("My MemoryMappedFile Name", Encoding.Default.GetBytes("Hello World!"))
End Using
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.