Table of Contents

Property Names

Namespace
DotNetBrowser.Js
Assembly
DotNetBrowser.dll

Names

Gets a collection containing the names of the properties of this object, including properties from prototype objects.

IEnumerable<string> Names { get; }

Property Value

IEnumerable<string>

The collection containing the names of the properties of this object, including properties from prototype objects.

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.

Exceptions

ObjectDisposedException

The IJsObject has already been disposed.

ConnectionClosedException

The connection to the Chromium engine is closed.