JsonMetadataServices.GetEnumConverter<T>(JsonSerializerOptions) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立 JsonConverter<T> 轉換 T
值的實例。
public:
generic <typename T>
where T : value class static System::Text::Json::Serialization::JsonConverter<T> ^ GetEnumConverter(System::Text::Json::JsonSerializerOptions ^ options);
public static System.Text.Json.Serialization.JsonConverter<T> GetEnumConverter<T> (System.Text.Json.JsonSerializerOptions options) where T : struct;
static member GetEnumConverter : System.Text.Json.JsonSerializerOptions -> System.Text.Json.Serialization.JsonConverter<'T (requires 'T : struct)> (requires 'T : struct)
Public Shared Function GetEnumConverter(Of T As Structure) (options As JsonSerializerOptions) As JsonConverter(Of T)
類型參數
- T
列舉類型的泛型定義。
參數
- options
- JsonSerializerOptions
要 JsonSerializerOptions 用於序列化和還原序列化的 。
傳回
JsonConverter<T>轉換 T
值的 實例。
備註
此 API 可供 System.Text.Json 來源產生器的輸出使用,不應直接呼叫。