共用方式為


JsonTypeInfo.Properties 屬性

定義

取得對應至目前型別的 JsonPropertyInfo 中繼資料清單。

public:
 property System::Collections::Generic::IList<System::Text::Json::Serialization::Metadata::JsonPropertyInfo ^> ^ Properties { System::Collections::Generic::IList<System::Text::Json::Serialization::Metadata::JsonPropertyInfo ^> ^ get(); };
public System.Collections.Generic.IList<System.Text.Json.Serialization.Metadata.JsonPropertyInfo> Properties { get; }
member this.Properties : System.Collections.Generic.IList<System.Text.Json.Serialization.Metadata.JsonPropertyInfo>
Public ReadOnly Property Properties As IList(Of JsonPropertyInfo)

屬性值

IList<JsonPropertyInfo>

備註

此屬性僅適用于類型的 Object 中繼資料。 針對其他類型,將會傳回空的唯讀清單。

清單中的專案順序 JsonPropertyInfo 會決定序列化順序,除非其中一個專案指定非零 <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Order> 值,在此情況下,屬性會以 穩定排序 <xref:System.Text.Json.Serialization.Metadata.JsonPropertyInfo.Order>

新增 JsonPropertyInfo 專案最多必須是唯 Name 一的,不過,只有在中繼資料實例鎖定以進行進一步修改後,才會在序列化上驗證。

適用於