web-dev-qa-db-ja.com

RestSharpJSON配列の逆シリアル化

このRestSharpクエリをJSON形式で起動します。

var response = restClient.Execute<Report>(request);

私が得る応答にはこのデータが含まれています

[
    {
        "Columns":
        [
            {"Name":"CameraGuid","Type":"Guid"},
            {"Name":"ArchiveSourceGuid","Type":"Guid"},
            {"Name":"StartTime","Type":"DateTime"},
            {"Name":"EndTime","Type":"DateTime"},
            {"Name":"TimeZone","Type":"String"},
            {"Name":"Capabilities","Type":"UInt32"}
        ],
        "Rows":
        [
            [
                "00000001-0000-babe-0000-00408c71be50",
                "3782fe37-6748-4d36-b258-49ed6a79cd6d",
                "2013-11-27T17:52:00Z",
                "2013-11-27T18:20:55.063Z",
                "Eastern Standard Time",
                2147483647
            ]
        ]
    }
]

私はそれをこのクラスのグループに逆シリアル化しようとしています:

public class Report
{
    public List<ReportResult> Results { get; set; }
}

public class ReportResult
{
    public List<ColumnField> Columns { get; set; }
    public List<RowResult>   Rows { get; set; }
}

public class ColumnField
{
    public string Name { get; set; }
    public string Type { get; set; }
}

public class RowResult
{
    public List<string> Elements { get; set; }
}

残念ながら、結果データはnullであり、次の例外が発生します。

タイプ 'RestSharp.JsonArray'のオブジェクトをタイプ 'System.Collections.Generic.IDictionary`2 [System.String、System.Object]'にキャストできません。

ここで何が悪いのか理解できません。私は少し助けていただければ幸いです。

10
BriocheBro

これを試して:

var response = restClient.Execute<List<ReportResult>>(request);

[〜#〜]編集[〜#〜]

また、ReportResultを次のように変更する必要があります。

public class ReportResult
{
  public List<ColumnField> Columns { get; set; }
  public List<List<string>>   Rows { get; set; }
}

ReportRowResultを取り除くことができます。

22
Reda