Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs @ 277:7439d7a5f8d0
Warning HTML: Cambiado ALT por TITLE.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 20 Dec 2011 08:28:33 -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; } } }