Click or drag to resize

IJsArrayBuffer Interface

A JavaScript array buffer.

Namespace:  DotNetBrowser.Js.Collections
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
public interface IJsArrayBuffer

The IJsArrayBuffer type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of elements contained in the IJsArrayBuffer.
Top
Methods
  NameDescription
Public methodToByteArray
Copies the contents of the IJsArrayBuffer to a new byte array.
Top
Remarks
An array buffer object can be passed between .NET and JavaScript as a method argument or a return value.The object lifetime is bound to the lifetime of the frame this object belongs to.When the owner frame is unloaded, all the JavaScript objects are automatically disposed.
See Also