CoreWebView2SharedBuffer.FileMappingHandle Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The file mapping handle of the shared memory of the buffer.
public System.Runtime.InteropServices.SafeHandle FileMappingHandle { get; }
member this.FileMappingHandle : System.Runtime.InteropServices.SafeHandle
Public ReadOnly Property FileMappingHandle As SafeHandle
Property Value
Remarks
Normal app should use OpenStream() to get a stream object to access the buffer. For advanced scenarios, you could use native file mapping APIs to obtain other views or duplicate this handle to another application process and create a view from the duplicated handle in that process to access the buffer from that separate process.