JsonSerializerOptions.TryGetTypeInfo(Type, JsonTypeInfo) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試取得 JsonTypeInfo 目前 JsonSerializerOptions 實例解析的合約中繼資料。
public:
bool TryGetTypeInfo(Type ^ type, [Runtime::InteropServices::Out] System::Text::Json::Serialization::Metadata::JsonTypeInfo ^ % typeInfo);
public bool TryGetTypeInfo (Type type, out System.Text.Json.Serialization.Metadata.JsonTypeInfo? typeInfo);
member this.TryGetTypeInfo : Type * JsonTypeInfo -> bool
Public Function TryGetTypeInfo (type As Type, ByRef typeInfo As JsonTypeInfo) As Boolean
參數
- type
- Type
要解析合約中繼資料的類型。
- typeInfo
- JsonTypeInfo
當這個方法傳回時,會包含已解析的合約中繼資料,如果 null
無法解析合約,則為 。
傳回
true
如果找到 的 type
合約,則 false
為 ,否則為 。
例外狀況
type
為 null
。
type
對序列化無效。
備註
傳回的中繼資料可以向下轉型為 JsonTypeInfo<T> ,並與相關的 JsonSerializer 多載搭配使用。
JsonSerializerOptions如果實例遭到鎖定以進行修改,方法會傳回中繼資料的快取實例。