Windows 8: Advanced Live Tiles, Part 2: Listing 2

BadgeController.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Xml.Linq;

namespace VSMAdvancedTilesPart2.Service.Controllers
{
    public class BadgeController : ApiController
    {
        // GET api/badge/5
        public XElement Get(int id)
        {
            int num = new Random().Next(0, id);
            return XElement.Parse(String.Format("<badge value=\"{0}\"/>", num));
        }
    }
}

About the Author

Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].

comments powered by Disqus

Featured

Subscribe on YouTube