RuntimeClientGetPropertiesAsync Method |
Version 130.1.90
Returns properties of a given object. Object group of the result is inherited from the target
object.
Namespace: CefSharp.DevTools.RuntimeAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<GetPropertiesResponse> GetPropertiesAsync(
string objectId,
bool? ownProperties = null,
bool? accessorPropertiesOnly = null,
bool? generatePreview = null,
bool? nonIndexedPropertiesOnly = null
)
public:
Task<GetPropertiesResponse^>^ GetPropertiesAsync(
String^ objectId,
Nullable<bool> ownProperties = nullptr,
Nullable<bool> accessorPropertiesOnly = nullptr,
Nullable<bool> generatePreview = nullptr,
Nullable<bool> nonIndexedPropertiesOnly = nullptr
)
Parameters
- objectId String
- Identifier of the object to return properties for.
- ownProperties NullableBoolean (Optional)
- If true, returns properties belonging only to the element itself, not to its prototypechain.
- accessorPropertiesOnly NullableBoolean (Optional)
- If true, returns accessor properties (with getter/setter) only; internal properties are notreturned either.
- generatePreview NullableBoolean (Optional)
- Whether preview should be generated for the results.
- nonIndexedPropertiesOnly NullableBoolean (Optional)
- If true, returns non-indexed properties only.
Return Value
TaskGetPropertiesResponsereturns System.Threading.Tasks.Task<GetPropertiesResponse>
See Also