Bu mükemmel bir örnek değil, ama bu doğru yolda size koymak olabilir. Önce verileri tutmak için bir nesne oluşturmak.
public class activity
{
public activity(string message, object action_link)
{
Message = message;
Action_Link = action_link;
}
public string Message { get; set; }
public object Action_Link { get; set; }
}
public class action_link
{
public string Text { get; set; }
public string Href { get; set; }
public action_link(string text, string href)
{
Text = text;
Href = href;
}
}
Sonra serialize için böyle bir sınıf yapmak istiyorum:
using System;
using System.Web;
using System.Web.Script.Serialzation;
public class activityHandler : IHttpHandler
{
public void ProcessRequest (HttpContext context) {
string message = "{*actor*} played this game";
string text = "Play Now";
string href = "http://yoururltoplaygamegere";
action_link link = new action_link(text, href);
activity act = new activity(message, link);
JavaScriptSerializer serializer = new JavaScriptSerializer();
context.Response.Write(serializer.Serialize(act));
context.Response.ContentType = "application/json";
}
public bool IsReusable
{
get
{
return false;
}
}
}
Bu büyük olasılıkla size serializing zaman arıyoruz JSON yapısını verecektir. O Eğer çok üzerinde ve benzeri çoklu action_link etkinlik nesne başına nesneleri ve böylece ulaşmak isteyen standardına uygundur eğer bir koleksiyon haline action_link nesneyi dönüşebilir. Burada bu örnekte kullanılan serileştirme hakkında daha fazla bilgi edinebilirsiniz:
JSON Serialization in ASP.NET with C#
Umarım bu yardımcı olur.