PropertyBag Constructor (Boolean, IEqualityComparerString) |
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.5
Syntaxpublic PropertyBag(
bool isReadOnly,
IEqualityComparer<string> comparer
)
Public Sub New (
isReadOnly As Boolean,
comparer As IEqualityComparer(Of String)
)
public:
PropertyBag(
bool isReadOnly,
IEqualityComparer<String^>^ comparer
)
new :
isReadOnly : bool *
comparer : IEqualityComparer<string> -> PropertyBag
Parameters
- isReadOnly
- Type: SystemBoolean
True to make the PropertyBag read-only, false to make it writable. - comparer
- Type: System.Collections.GenericIEqualityComparerString
The comparer to use for property names, or null to use the default string comparer.
See Also