Table of Contents

Class JsonLdSerializerOptions

Namespace
ActivityPub.Types.Conversion
Assembly
ActivityPub.Types.dll

Configuration options for JsonLdSerializer.

public class JsonLdSerializerOptions
Inheritance
JsonLdSerializerOptions
Inherited Members

Properties

DefaultJsonSerializerOptions

JSON options that will be merged with those used by the library. These act as a base layer, and required changes will be automatically overlaid by the library.

public JsonSerializerOptions DefaultJsonSerializerOptions { get; set; }

Property Value

JsonSerializerOptions

Remarks

The default value is

new(JsonSerializerOptions.Default)
to allow application code to modify it in a
services.Configure()
callback.