Quantcast
Channel: Topliners: Message List
Viewing all articles
Browse latest Browse all 3481

visual studio c# implementation cloud components?

$
0
0

Has anyone created an sample, using C# cloud components?

Something like:

public class EloquaCloudController : Controller

    {   // POST

        public ActionResult Create(Guid id)

        {

            return View();

        }

        // GET

        public ActionResult Configuration(Guid id)

        {

            return View();

        }

        // GET

        public ActionResult Render(Guid id, Object objects)

        {

            return View();

        }

        // DELETE

        public ActionResult Remove(Guid id )

        {

            return View();

        }

        // GET

        public ActionResult Preview(Guid id, Object objects)

        {

            return View();

        }

}


Viewing all articles
Browse latest Browse all 3481

Trending Articles