IJsObjectPropertyCollection Interface |
Namespace: DotNetBrowser.Js
public interface IJsObjectPropertyCollection : IAutoDisposable
The IJsObjectPropertyCollection type exposes the following members.
Name | Description | |
---|---|---|
![]() | IsDisposed |
Indicates if the object is already disposed.
(Inherited from IAutoDisposable.) |
![]() | ItemString |
Gets or sets a property with the specified name in the current JavaScript object.
The name parameter represents JavaScript object's property name.
|
![]() | ItemUInt32 |
Gets or sets a property with the specified index in the current JavaScript object.
The index parameter represents JavaScript object's property index.
|
![]() | Names |
Gets a collection containing the names of the properties of this object, including properties
from prototype objects.
|
![]() | OwnPropertyNames |
Gets a collection containing the names of the properties of this object, excluding properties
from prototype objects.
|
Name | Description | |
---|---|---|
![]() | Contains(String) |
Checks whether the JavaScript object has a property or function with the specified name.
|
![]() | Contains(UInt32) |
Checks whether the JavaScript object has a property with the specified index.
|
![]() | Remove(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.
|
![]() | Remove(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.
|
Name | Description | |
---|---|---|
![]() | Disposed |
Occurs when the object has been disposed.
(Inherited from IAutoDisposable.) |