Click or drag to resize

RuntimeClient.GetPropertiesAsync Method

Version 90.6.50
Returns properties of a given object. Object group of the result is inherited from the target object.

Namespace:  CefSharp.DevTools.Runtime
Assembly:  CefSharp (in CefSharp.dll) Version: 90.6.50.0 (90.6.50.0)
Syntax
public Task<GetPropertiesResponse> GetPropertiesAsync(
	string objectId,
	Nullable<bool> ownProperties = null,
	Nullable<bool> accessorPropertiesOnly = null,
	Nullable<bool> generatePreview = null
)

Parameters

objectId
Type: System.String
Identifier of the object to return properties for.
ownProperties (Optional)
Type: System.Nullable<Boolean>
If true, returns properties belonging only to the element itself, not to its prototypechain.
accessorPropertiesOnly (Optional)
Type: System.Nullable<Boolean>
If true, returns accessor properties (with getter/setter) only; internal properties are notreturned either.
generatePreview (Optional)
Type: System.Nullable<Boolean>
Whether preview should be generated for the results.

Return Value

Type: Task<GetPropertiesResponse>
returns System.Threading.Tasks.Task<GetPropertiesResponse>
See Also