Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Services/FormsAuthenticationService.cs @ 135:80156ae1493f
Se agrega la eliminación de un evento cuando la acción sea Cancelar. Además se arregla la descripción de los eventos Alt.Net Café y Grupo de estudio debido a que los
test se encontraban fallidos.
author | alabra |
---|---|
date | Sun, 17 Jul 2011 14:13:30 -0400 |
parents | 65f0b3d70c18 |
children |
line wrap: on
line source
using System; using System.Web.Security; namespace AltNetHispano.Agendas.Web.Services { public class FormsAuthenticationService : IFormsAuthenticationService { public void SignIn(string userName, bool createPersistentCookie) { if (String.IsNullOrEmpty(userName)) throw new ArgumentException("Value cannot be null or empty.", "userName"); FormsAuthentication.SetAuthCookie(userName, createPersistentCookie); } public void SignOut() { FormsAuthentication.SignOut(); } } }