IArrayBufferView.InvokeWithDirectAccess<TArg>(Action<IntPtr, TArg>, TArg) Method |
Invokes a delegate that takes an argument and returns no value, giving it direct access to the view's contents.
Namespace: Microsoft.ClearScript.JavaScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntaxvoid InvokeWithDirectAccess<TArg>(
Action<IntPtr, TArg> action,
in TArg arg
)
Sub InvokeWithDirectAccess(Of TArg) (
action As Action(Of IntPtr, TArg),
ByRef arg As TArg
)
generic<typename TArg>
void InvokeWithDirectAccess(
Action<IntPtr, TArg>^ action,
[InAttribute] TArg% arg
)
abstract InvokeWithDirectAccess :
action : Action<IntPtr, 'TArg> *
arg : 'TArg byref -> unit
Parameters
- action Action<IntPtr, TArg>
- The delegate to invoke.
- arg TArg
- The argument to pass to the delegate.
Type Parameters
- TArg
- The delegate's argument type.
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