IJsObjectPropertyCollectionNames Property |
Gets a collection containing the names of the properties of this object, including properties
from prototype objects.
Namespace:
DotNetBrowser.Js
Assembly:
DotNetBrowser (in DotNetBrowser.dll) Version: 2.23.2
Syntax IEnumerable<string> Names { get; }
Property Value
Type:
IEnumerableString
The collection containing the names of the properties of this object, including properties
from prototype objects.
Exceptions Remarks
The returned enumerable will enumerate the names in the same way as they would be enumerated by a
for-in statement over this object in JavaScript.
See Also