Click or drag to resize

IArrayBufferInvokeWithDirectAccessT Method (FuncIntPtr, T)

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

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

Parameters

func
Type: SystemFuncIntPtr, T
The delegate to invoke.

Type Parameters

T
The delegate's return type.

Return Value

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