Class RemoteObject
- Namespace
- PuppeteerSharp.Cdp.Messaging
- Assembly
- PuppeteerSharp.dll
Remote object is a mirror object referencing original JavaScript object.
public class RemoteObject
- Inheritance
-
RemoteObject
Properties
ClassName
Gets or sets the Object class (constructor) name. Specified for object type values only. (Optional).
public string ClassName { get; set; }
Property Value
Description
Gets or sets String representation of the object. (Optional).
public string Description { get; set; }
Property Value
ObjectId
Gets or sets the object identifier.
public string ObjectId { get; set; }
Property Value
Subtype
Gets or sets the subtype.
public RemoteObjectSubtype Subtype { get; set; }
Property Value
Type
Gets or sets the type.
public RemoteObjectType Type { get; set; }
Property Value
UnserializableValue
Gets or sets the unserializable value.
public string UnserializableValue { get; set; }
Property Value
Value
Gets or sets the value.
public JsonElement? Value { get; set; }