本文整理汇总了C#中System.Web.Script.Serialization.JavaScriptSerializer.Replace方法的典型用法代码示例。如果您正苦于以下问题:C# Script.Serialization.JavaScriptSerializer.Replace方法的具体用法?C# Script.Serialization.JavaScriptSerializer.Replace怎么用?C# Script.Serialization.JavaScriptSerializer.Replace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.Script.Serialization.JavaScriptSerializer
的用法示例。
在下文中一共展示了Script.Serialization.JavaScriptSerializer.Replace方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Json
// Here be formatting dragons
public static string Json(dynamic input)
{
string json = new JavaScriptSerializer().Serialize(input);
json = keywords_tab_level_1.Aggregate(json, (current, s) => current.Replace("\"" + s + "\":", Environment.NewLine + "\t\"" + s + "\":"));
json = keywords_tab_level_2.Aggregate(json, (current, s) => current.Replace("\"" + s + "\":", Environment.NewLine + "\t\t\"" + s + "\":"));
json = keywords_tab_level_3.Aggregate(json, (current, s) => current.Replace("\"" + s + "\":", Environment.NewLine + "\t\t\t\"" + s + "\":"));
json = json.Replace("}},", Environment.NewLine + "\t\t}" + Environment.NewLine + "\t},");
//json = json.Substring(0, json.Length - 2) + (json.Substring(0, json.Length - 2).Contains("\"")?"\"":"") + Environment.NewLine + "\t}" + Environment.NewLine + "}";
json = json.Replace("\\u0027", "'");
return json;
}
示例2: GetJSONStock
public string GetJSONStock(int day)
{
foreach(SheepBO anim in this.Herd)
{
if (anim.Age.Value >= 1000)
this.Herd.Remove(anim);
}
HerdResponse resp = new HerdResponse(this.Herd);
string json = new JavaScriptSerializer().Serialize(resp);
return json.Replace("_", "-");
}
示例3: IRCommandDocument
public static HarmonyDocument IRCommandDocument(string deviceId, string command)
{
var document = new HarmonyDocument();
var element = new Element("oa");
element.Attributes.Add("xmlns", "connect.logitech.com");
element.Attributes.Add("mime", "vnd.logitech.harmony/vnd.logitech.harmony.engine?holdAction");
var action = new HarmonyAction { type = "IRCommand", deviceId = deviceId, command = command };
var json = new JavaScriptSerializer().Serialize(action);
// At this point our valid json won't work - we need to break it so it looks like:
// {"type"::"IRCommand","deviceId"::"deviceId","command"::"command"}
// note double colons
json = json.Replace(":", "::");
element.Value = string.Format("action={0}:status=press", json);
document.AddChild(element);
return document;
}
示例4: TestReturnValue
//Tests the value returned by the LoadVideoMgmt method
private void TestReturnValue(ActionResult result, string expectedMrdvrResult, string expectedDeviceActionResponse)
{
//Assert
Assert.IsTrue(result != null, "result is null");
//A partial view result is returned
var resultPartial = result as PartialViewResult;
Assert.IsTrue(resultPartial != null, "resultPartial is null");
//It was the right type of partial view result
Assert.IsTrue(resultPartial.ViewName.Equals("VideoManagement_Partial"),
"Expected resultPartial.ViewName to be VideoManagement_Partial. It was actually "
+ resultPartial.ViewName + ".");
//It has the correct information
//Model is not null
var model = resultPartial.Model;
Assert.IsNotNull(model);
//Model response is correct
var modelResponse = model.ToJSON();
string modelResponseString = new JavaScriptSerializer().Serialize(modelResponse);
modelResponseString = modelResponseString.Replace(@"\", " ");
modelResponseString = modelResponseString.Replace(@"""", @" ");
Assert.IsTrue(modelResponseString.Contains(expectedMrdvrResult), "MRDVR Service was not found");
//Compare the expected DeviceActionResponse
int startResponse = modelResponseString.IndexOf("DeviceActionResponse", System.StringComparison.Ordinal);
int endResponse = modelResponseString.IndexOf("NewDeviceSerial", System.StringComparison.Ordinal);
string actualDeviceResponse = modelResponseString.Substring(startResponse, (endResponse - startResponse) - 1);
Assert.IsTrue(modelResponseString.Contains(expectedDeviceActionResponse), "DeviceActionResponse had an unexpected value. Expected: " +
expectedDeviceActionResponse + ", Actual: " + actualDeviceResponse + ".");
//Model is correct type
Assert.IsTrue(model is VideoManagementModel, "Model is not a VideoManagementModel as expected");
}
示例5: Home
public ActionResult Home()
{
ViewData.Model = eventmodel.getEvents(defaultappid, 5);
//create the json list with fullcalendar event properties
List<fullcalendar_event> jsonlist = new List<fullcalendar_event>();
fullcalendar_event fc_event;
foreach (novaevent ne in (List<novaevent>)ViewData.Model)//selectedEvents.Take(5).ToList())
{
fc_event = new fullcalendar_event();
fc_event.allDay = false;
fc_event.title = ne.EventName;
fc_event.start = ne.EventStart.ToString("yyyy-MM-dd") + " " + ne.EventStart.ToString("HH:mm");
fc_event.end = ne.EventEnd.ToString("yyyy-MM-dd") + " " + ne.EventEnd.ToString("HH:mm");
fc_event.url = "../Events/Details?id=" + ne.EventID;
fc_event.id = ne.EventID;
jsonlist.Add(fc_event);
}
JsonResult eventjson = this.Json(jsonlist);
Object jsondata = eventjson.Data;
string serialized = new JavaScriptSerializer().Serialize(jsondata);
string replaced = serialized.Replace("\"\\/Date(", "Date(").Replace(")\\/\"", ")");
ViewData["eventlistjson"] = replaced;
return View();
}
示例6: SequenceDocument
public static HarmonyDocument SequenceDocument(int sequenceId)
{
var document = new HarmonyDocument();
var element = new Element("oa");
element.Attributes.Add("xmlns", "connect.logitech.com");
element.Attributes.Add("mime", "vnd.logitech.harmony/vnd.logitech.harmony.engine?holdAction");
var action = new HarmonySequenceAction { sequenceId = sequenceId };
var json = new JavaScriptSerializer().Serialize(action);
// At this point our valid json won't work - we need to break it so it looks like:
// {"sequenceId"::123}
// note double colons
json = json.Replace(":", "::");
element.Value = string.Format("action={0}:status=press", json);
document.AddChild(element);
return document;
}