JsonSerializerContext(JsonSerializerOptions) 构造函数

定义

创建 的 JsonSerializerContext 实例并将其与指定的 JsonSerializerOptions绑定。

protected:
 JsonSerializerContext(System::Text::Json::JsonSerializerOptions ^ options);
protected JsonSerializerContext (System.Text.Json.JsonSerializerOptions? options);
new System.Text.Json.Serialization.JsonSerializerContext : System.Text.Json.JsonSerializerOptions -> System.Text.Json.Serialization.JsonSerializerContext
Protected Sub New (options As JsonSerializerOptions)

参数

options
JsonSerializerOptions

运行时为上下文实例提供的选项。

注解

如果未传递任何实例选项,则在使用 AddContext<TContext>() 绑定上下文之前,不会设置任何选项,直到 Options 调用 ,此时会创建并绑定新的选项实例。

适用于