JSON-RPC.NET
JSON-RPC.NET copied to clipboard
Optional parameters parse bug
I have method with 4 optional parameters
public UpdateDomainView UpdateDomain(string domain, ApiRegistrantEntity s_registrant = null, ApiRegistrantContractEntity contract_info = null, IEnumerable<ApiDsRecord> dsRecords = null, Dictionary<string, string> s_ns = null) {}
When i try to set only second, third or fourth optional parameter => all optional parameters are null.
If i set first optional and third optional only first optional parametel will be not null but others are NULL
Why?