DynamicHostObjectHasMember Method |
Determines whether the object has the specified named member.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public virtual bool HasMember(
string name,
bool ignoreCase
)
Public Overridable Function HasMember (
name As String,
ignoreCase As Boolean
) As Boolean
public:
virtual bool HasMember(
String^ name,
bool ignoreCase
)
abstract HasMember :
name : string *
ignoreCase : bool -> bool
override HasMember :
name : string *
ignoreCase : bool -> bool
Parameters
- name String
- The member name for which to search.
- ignoreCase Boolean
- True to perform a case-insensitive search, false otherwise.
Return Value
BooleanTrue if the named member was found,
false otherwise.
See Also