JSON-RPC.NET icon indicating copy to clipboard operation
JSON-RPC.NET copied to clipboard

Optional parameters parse bug

Open LonerKO opened this issue 4 years ago • 0 comments

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?

LonerKO avatar Feb 16 '21 17:02 LonerKO