私はこのようなことをしています:
RestResponse<OTContentReply> response = (RestResponse<OTContentReply>)client.Execute<OTContentReply>(request);
ここで、OTContentReplay は次のような 4 つの文字列を含む非常に単純なクラスです。
public class OTContentReply
{
public string url { get; set; }
public string embed { get; set; }
public string title { get; set; }
public string description { get; set; }
}
応答には多数の OTContentReply ノードが含まれており、上記のコードは最初のノードを OTConentReply のインスタンスに配置します。(偉大な!)
ここでやりたいことは、すべてのコンテンツ ノードを配列またはリストに取得することです。私はこれを試しました:
RestResponse<List<OTContentReply>> response = (RestResponse<List<OTContentReply>>)client.Execute<List<OTContentReply>>(request);
しかし、エラーが発生します:
Cannot implicitly convert type 'RestSharp.RestResponse<System.Collections.Generic.List<Algoa.OpenTouchCtrl.OTContentReply>>' to 'RestSharp.RestResponse'
これを行う適切な方法は何ですか?