Table of Contents

Interface IMetaBuilder

Namespace
JsonApiDotNetCore.Serialization.Response
Assembly
JsonApiDotNetCore.dll

Builds the top-level meta object.

[PublicAPI]
public interface IMetaBuilder

Methods

Add(IDictionary<string, object?>)

Merges the specified dictionary with existing key/value pairs. In the event of a key collision, the value from the specified dictionary will overwrite the existing one.

void Add(IDictionary<string, object?> values)

Parameters

values IDictionary<string, object>

Build()

Builds the top-level meta data object.

IDictionary<string, object?>? Build()

Returns

IDictionary<string, object>