UtilSharedMemoryExists Method
Determine whether a MemoryMappedFile with the specified name is already created.
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 bool Exists(
string name
)
Public Shared Function Exists (
name As String
) As Boolean
Dim name As String
Dim returnValue As Boolean
returnValue = UtilSharedMemory.Exists(name)
public:
static bool Exists(
String^ name
)
static member Exists :
name : string -> bool
No code example is currently available or this language may not be supported.
- name String
-
The name o the MemoryMappedFile segment.
Boolean if a
MemoryMappedFile with the specified name is already created;
otherwise,
.
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)
Dim exists As Boolean = SharedMemoryUtil.Exists("My MemoryMappedFile Name")
MessageBox.Show(exists)
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.