Adds a value for the given key, throwing an Exception if the key
already has a value.
Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax
Parameters
- key
- Type: SystemString
The key for which a value should be set. - value
- Type: SystemObject
The value for the key.
Remarks
var obj = new ParseObject("MyType") { {"name", "foo"}, {"count", 10}, {"found", false} };
See Also