V8FastHostDynamicObject<TObject>.HasDynamicProperty(String) Method |
Determines whether a dynamic property with the specified name exists.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic bool HasDynamicProperty(
string name
)
Public Function HasDynamicProperty (
name As String
) As Boolean
public:
virtual bool HasDynamicProperty(
String^ name
) sealed
abstract HasDynamicProperty :
name : string -> bool
override HasDynamicProperty :
name : string -> bool
Parameters
- name String
- The name of the dynamic property for which to search.
Return Value
BooleanTrue if the dynamic property exists,
false otherwise.
Implements
IV8FastHostDynamicProperties.HasDynamicProperty(String)
See Also