DefaultJsonTypeInfoResolver.GetTypeInfo(Type, JsonSerializerOptions) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
解析指定 type
和 options
組態的 JSON 合約。
public:
virtual System::Text::Json::Serialization::Metadata::JsonTypeInfo ^ GetTypeInfo(Type ^ type, System::Text::Json::JsonSerializerOptions ^ options);
public virtual System.Text.Json.Serialization.Metadata.JsonTypeInfo GetTypeInfo (Type type, System.Text.Json.JsonSerializerOptions options);
abstract member GetTypeInfo : Type * System.Text.Json.JsonSerializerOptions -> System.Text.Json.Serialization.Metadata.JsonTypeInfo
override this.GetTypeInfo : Type * System.Text.Json.JsonSerializerOptions -> System.Text.Json.Serialization.Metadata.JsonTypeInfo
Public Overridable Function GetTypeInfo (type As Type, options As JsonSerializerOptions) As JsonTypeInfo
參數
- type
- Type
要解析 JSON 合約的類型。
- options
- JsonSerializerOptions
JsonSerializerOptions用來判斷合約組態的 實例。
傳回
, JsonTypeInfo 定義 的 type
反映衍生 JSON 合約。
實作
例外狀況
type
或 options
為 null
。
備註
這個方法的基底實作會產生反映衍生的合約,並從清單中套用任何回呼 Modifiers 。