Table of Contents

Class CustomNewtonsoftJsonContentSerializer

Namespace
Meraki.Api
Assembly
Meraki.Api.dll

A custom IHttpContentSerializer based on NewtonsoftJsonContentSerializer to handle retries after missing members are observed

public class CustomNewtonsoftJsonContentSerializer : IHttpContentSerializer
Inheritance
CustomNewtonsoftJsonContentSerializer
Implements
IHttpContentSerializer
Inherited Members

Constructors

CustomNewtonsoftJsonContentSerializer(MerakiClientOptions, ILogger)

public CustomNewtonsoftJsonContentSerializer(MerakiClientOptions options, ILogger logger)

Parameters

options MerakiClientOptions
logger ILogger

Methods

FromHttpContentAsync<T>(HttpContent, CancellationToken)

Deserializes an object of type T from an HttpContent object.

public Task<T?> FromHttpContentAsync<T>(HttpContent content, CancellationToken cancellationToken = default)

Parameters

content HttpContent

HttpContent object to deserialize.

cancellationToken CancellationToken

CancellationToken to abort the deserialization.

Returns

Task<T>

The deserialized object of type T.

Type Parameters

T

Type of the object to serialize to.

GetFieldNameForProperty(PropertyInfo)

Calculates what the field name should be for the given property. This may be affected by custom attributes the serializer understands

public string? GetFieldNameForProperty(PropertyInfo propertyInfo)

Parameters

propertyInfo PropertyInfo

A PropertyInfo object.

Returns

string

The calculated field name.

ToHttpContent<T>(T)

Serializes an object of type T to HttpContent

public HttpContent ToHttpContent<T>(T item)

Parameters

item T

Object to serialize.

Returns

HttpContent

HttpContent that contains the serialized T object.

Type Parameters

T

Type of the object to serialize from.