PropertyBagRemovePropertyNoCheck Method |
Removes a property without checking whether the
PropertyBag is read-only.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.4
Syntaxpublic bool RemovePropertyNoCheck(
string name
)
Public Function RemovePropertyNoCheck (
name As String
) As Boolean
public:
bool RemovePropertyNoCheck(
String^ name
)
member RemovePropertyNoCheck :
name : string -> bool
Parameters
- name
- Type: SystemString
The name of the property to remove.
Return Value
Type:
BooleanTrue if the property was found and removed,
false otherwise.
Remarks
This operation is never exposed to script code.
See Also