We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Due to the OData naming of certain properties, this library uses Json serialization attributes to specify the names (e.g. @odata.count).
@odata.count
The following serialisers (and versions) are currently catered or:
Newtonsoft.Json.JsonSerializerSettings - expected configuration
ContractResolver = new CamelCasePropertyNamesContractResolver() NullValueHandling = NullValueHandling.Ignore
System.Text.Json.JsonSerializerOptions - expected configuration
DictionaryKeyPolicy = JsonNamingPolicy.CamelCase IgnoreNullValues = true PropertyNamingPolicy = JsonNamingPolicy.CamelCase