CoreWebView2SharedBuffer.Buffer 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 raw memory address of the buffer.
public IntPtr Buffer { get; }
member this.Buffer : nativeint
Public ReadOnly Property Buffer As IntPtr
Property Value
IntPtr
nativeint
Remarks
You can cast it to pointer to real data types like byte*
to access the memory from unsafe
code region. Normal app should use OpenStream() to get a stream object to access the buffer.