Click or drag to resize

IArrayBuffer Interface

Represents a JavaScript ArrayBuffer.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public interface IArrayBuffer : IJavaScriptObject, 
	IScriptObject, IDisposable

The IArrayBuffer type exposes the following members.

Properties
 NameDescription
Public propertyEngine Gets the script engine that owns the object.
(Inherited from IScriptObject)
Public propertyFlags Gets the JavaScript object's attributes.
(Inherited from IJavaScriptObject)
Public propertyItemInt32 Gets or sets the value of an indexed script object property.
(Inherited from IScriptObject)
Public propertyItemString, Object Gets or sets the value of a named script object property.
(Inherited from IScriptObject)
Public propertyKind Gets the JavaScript object kind.
(Inherited from IJavaScriptObject)
Public propertyPropertyIndices Enumerates the script object's property indices.
(Inherited from IScriptObject)
Public propertyPropertyNames Enumerates the script object's property names.
(Inherited from IScriptObject)
Public propertySize Gets the size of the ArrayBuffer in bytes.
Top
Methods
 NameDescription
Public methodDeleteProperty(Int32) Removes an indexed script object property.
(Inherited from IScriptObject)
Public methodDeleteProperty(String) Removes a named script object property.
(Inherited from IScriptObject)
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Public methodGetBytes Creates a byte array containing a copy of the ArrayBuffer's contents.
Public methodGetProperty(Int32) Gets the value of an indexed script object property.
(Inherited from IScriptObject)
Public methodGetProperty(String, Object) Gets the value of a named script object property.
(Inherited from IScriptObject)
Public methodInvoke Invokes the script object.
(Inherited from IScriptObject)
Public methodInvokeAsFunction Invokes the script object as a function.
(Inherited from IScriptObject)
Public methodInvokeMethod Invokes a script object method.
(Inherited from IScriptObject)
Public methodInvokeWithDirectAccess(ActionIntPtr) Invokes a delegate that returns no value, giving it direct access to the ArrayBuffer's contents.
Public methodInvokeWithDirectAccessT(FuncIntPtr, T) Invokes a delegate that returns a value, giving it direct access to the ArrayBuffer's contents.
Public methodReadBytes Copies bytes from the ArrayBuffer into the specified byte array.
Public methodSetProperty(Int32, Object) Sets the value of an indexed script object property.
(Inherited from IScriptObject)
Public methodSetProperty(String, Object) Sets the value of a named script object property.
(Inherited from IScriptObject)
Public methodWriteBytes Copies bytes from the specified byte array into the ArrayBuffer.
Top
See Also