Click or drag to resize

IJsObjectPropertyCollection Interface

The JavaScript object properties.

Namespace:  DotNetBrowser.Js
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
public interface IJsObjectPropertyCollection : IAutoDisposable

The IJsObjectPropertyCollection type exposes the following members.

Properties
  NameDescription
Public propertyIsDisposed
Indicates if the object is already disposed.
(Inherited from IAutoDisposable.)
Public propertyItemString
Gets or sets a property with the specified name in the current JavaScript object. The name parameter represents JavaScript object's property name.
Public propertyItemUInt32
Gets or sets a property with the specified index in the current JavaScript object. The index parameter represents JavaScript object's property index.
Public propertyNames
Gets a collection containing the names of the properties of this object, including properties from prototype objects.
Public propertyOwnPropertyNames
Gets a collection containing the names of the properties of this object, excluding properties from prototype objects.
Top
Methods
  NameDescription
Public methodContains(String)
Checks whether the JavaScript object has a property or function with the specified name.
Public methodContains(UInt32)
Checks whether the JavaScript object has a property with the specified index.
Public methodRemove(String)
Removes a property with the specified name from the JavaScript object. Once you remove the property, it will not be available in the current JavaScript object anymore.
Public methodRemove(UInt32)
Removes a property with the specified index in the JavaScript object. Once you remove the property, it will not be available in the current JavaScript object anymore.
Top
Events
  NameDescription
Public eventDisposed
Occurs when the object has been disposed.
(Inherited from IAutoDisposable.)
Top
See Also