2014-07-07 23:05:06 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Wox.Plugin;
|
2014-07-05 23:10:34 +08:00
|
|
|
|
|
2014-07-09 23:44:57 +08:00
|
|
|
|
namespace Wox.JsonRPC
|
2014-07-05 23:10:34 +08:00
|
|
|
|
{
|
2014-07-07 23:05:06 +08:00
|
|
|
|
public class JsonRPCErrorModel
|
2014-07-05 23:10:34 +08:00
|
|
|
|
{
|
2014-07-07 23:05:06 +08:00
|
|
|
|
public int Code { get; set; }
|
2014-07-05 23:10:34 +08:00
|
|
|
|
|
2014-07-07 23:05:06 +08:00
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Data { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class JsonRPCModelBase
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string JsonRPC { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class JsonRPCResponseModel : JsonRPCModelBase
|
|
|
|
|
{
|
|
|
|
|
public string Result { get; set; }
|
|
|
|
|
|
|
|
|
|
public JsonRPCErrorModel Error { get; set; }
|
2014-07-05 23:10:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-07 23:05:06 +08:00
|
|
|
|
public class JsonRPCQueryResponseModel : JsonRPCResponseModel
|
2014-07-05 23:10:34 +08:00
|
|
|
|
{
|
2014-07-09 18:15:23 +08:00
|
|
|
|
public new List<JsonRPCResult> Result { get; set; }
|
2014-07-07 23:05:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class JsonRPCRequestModel : JsonRPCModelBase
|
|
|
|
|
{
|
|
|
|
|
public string Method { get; set; }
|
|
|
|
|
|
2014-07-09 18:15:23 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// counld be list<string> or string type
|
|
|
|
|
/// </summary>
|
|
|
|
|
public object Parameters { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
if (Parameters is string)
|
|
|
|
|
{
|
|
|
|
|
return string.Format(@"{{\""method\"":\""{0}\"",\""parameters\"":\""{1}\""}}", Method, Parameters);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string.Empty;
|
|
|
|
|
}
|
2014-07-07 23:05:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class JsonRPCResult : Result
|
|
|
|
|
{
|
2014-07-09 18:15:23 +08:00
|
|
|
|
public JsonRPCRequestModel JsonRPCAction { get; set; }
|
2014-07-05 23:10:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|