Click or drag to resize

IArrayBufferView.InvokeWithDirectAccess<TResult>(Func<IntPtr, TResult>) Method

Invokes a delegate that returns a value, giving it direct access to the view's contents.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntax
TResult InvokeWithDirectAccess<TResult>(
	Func<IntPtr, TResult> func
)

Parameters

func  Func<IntPtr, TResult>
The delegate to invoke.

Type Parameters

TResult
The delegate's return type.

Return Value

TResult
The delegate's return value.
Remarks
This method invokes the specified delegate, passing in the memory address of the view's contents. This memory address is valid only while the delegate is executing. The delegate must not access memory outside the view's range.
See Also