JsonObject(IEnumerableJsonProperty, Boolean) Constructor
Namespace: KGySoft.JsonAssembly: KGySoft.Json (in KGySoft.Json.dll) Version: 3.0.0
public JsonObject(
IEnumerable<JsonProperty> properties,
bool allowDuplicates = true
)
Public Sub New (
properties As IEnumerable(Of JsonProperty),
Optional allowDuplicates As Boolean = true
)
public:
JsonObject(
IEnumerable<JsonProperty>^ properties,
bool allowDuplicates = true
)
new :
properties : IEnumerable<JsonProperty> *
?allowDuplicates : bool
(* Defaults:
let _allowDuplicates = defaultArg allowDuplicates true
*)
-> JsonObject
Parameters
- properties IEnumerableJsonProperty
- The properties to be added to this JsonObject.
- allowDuplicates Boolean (Optional)
- to allow duplicate multiple elements with the same Name;
to overwrite recurring names with the latest value. This parameter is optional.
Default value: .