Table of Contents

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

string

Description

Gets or sets String representation of the object. (Optional).

public string Description { get; set; }

Property Value

string

ObjectId

Gets or sets the object identifier.

public string ObjectId { get; set; }

Property Value

string

Subtype

Gets or sets the subtype.

public RemoteObjectSubtype Subtype { get; set; }

Property Value

RemoteObjectSubtype

Type

Gets or sets the type.

public RemoteObjectType Type { get; set; }

Property Value

RemoteObjectType

UnserializableValue

Gets or sets the unserializable value.

public string UnserializableValue { get; set; }

Property Value

string

Value

Gets or sets the value.

public JToken Value { get; set; }

Property Value

JToken