Exemplo n.º 1
0
        public ActionResult Index()
        {
            InterviewModel interviewModel = new InterviewModel
            {
                SessionId = EmbeddedInterview.CreateCloudServicesSession()
            };

            return(View(interviewModel));
        }
Exemplo n.º 2
0
        public ActionResult ResumeSession()
        {
            InterviewModel interviewModel = new InterviewModel
            {
                SessionId = EmbeddedInterview.ResumeCloudServicesSession()
            };

            return(View("Index", interviewModel));
        }
Exemplo n.º 3
0
 public void SaveSnapshot(string snapshot)
 {
     EmbeddedInterview.SaveSnapshot(snapshot);
 }