websitepanel/WebsitePanel/Sources/WebsitePanel.WebDav.Core/WspContext.cs
2015-01-13 04:18:56 -08:00

15 lines
400 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using WebsitePanel.WebDav.Core.Security.Authentication.Principals;
namespace WebsitePanel.WebDav.Core
{
public class WspContext
{
public static WspPrincipal User { get { return HttpContext.Current.User as WspPrincipal; } }
}
}