RuntimeClientGetPropertiesAsync Method |
Version 87.1.132
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: 87.1.132.0 (87.1.132.0)
Syntax public Task<GetPropertiesResponse> GetPropertiesAsync(
string objectId,
Nullable<bool> ownProperties = null,
Nullable<bool> accessorPropertiesOnly = null,
Nullable<bool> generatePreview = null
)
public:
Task<GetPropertiesResponse^>^ GetPropertiesAsync(
String^ objectId,
Nullable<bool> ownProperties = nullptr,
Nullable<bool> accessorPropertiesOnly = nullptr,
Nullable<bool> generatePreview = nullptr
)
Parameters
- objectId
- Type: SystemString
Identifier of the object to return properties for. - ownProperties (Optional)
- Type: SystemNullableBoolean
If true, returns properties belonging only to the element itself, not to its prototypechain. - accessorPropertiesOnly (Optional)
- Type: SystemNullableBoolean
If true, returns accessor properties (with getter/setter) only; internal properties are notreturned either. - generatePreview (Optional)
- Type: SystemNullableBoolean
Whether preview should be generated for the results.
Return Value
Type:
TaskGetPropertiesResponsereturns System.Threading.Tasks.Task<GetPropertiesResponse>
See Also