本文整理匯總了C#中System.Result.ToJson方法的典型用法代碼示例。如果您正苦於以下問題:C# Result.ToJson方法的具體用法?C# Result.ToJson怎麽用?C# Result.ToJson使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Result
的用法示例。
在下文中一共展示了Result.ToJson方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Handle
/// <summary>
/// 處理程序
/// </summary>
/// <param name="request">請求上下文</param>
public string Handle(HttpListenerRequest requestContext)
{
var result = new Result() { Status = false };
if (!AuthCodeValidate(requestContext.QueryString["authcode"]))
{
result.Message = "AuthCode is invalid or has expired!";
return result.ToJson();
}
try
{
var commandString = requestContext.QueryString["command"];
var command = (ICommand)this.GetType().Assembly.CreateInstance("Urge.Service.Http.Command." + commandString);
result = command.Excute(requestContext);
}
catch(Exception ex)
{
//result.Message = "Command is invalid, the attention is case sensitive!";
result.Message = ex.Message;
}
return result.ToJson();
}
示例2: NotifyResults
public void NotifyResults(Result result)
{
try
{
var data = result.ToJson();
using (var wc = new WebClient())
{
wc.Headers.Add("Content-Type", "application/json");
wc.UploadString(masterUrl + "/slave/job/" + result.Tag, "PUT", data);
}
}
catch (Exception) { }
}