Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs @ 266:dba5d41bc7bf
BUG: Guardar persona con twitter ya existente genera error.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 25 Oct 2011 23:22:10 -0300 |
parents | 3ebe89c88caa |
children |
line wrap: on
line source
using System.Web; using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Web { public class HttpContextIdentityProvider : ISeguridad { public string GetUserName() { return HttpContext.Current.User.Identity.Name; } } }