18 lines
428 B
18 lines
428 B
6 months ago
|
using System.Net;
|
||
|
using System.Web.Http;
|
||
|
|
||
|
namespace WcfControlMonitorWebLib
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Controller 基类
|
||
|
/// </summary>
|
||
|
[Authorization]
|
||
|
public abstract class ControllerBase : ApiController
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 当前访问者的身份信息,即数据库中存储的用户名。
|
||
|
/// </summary>
|
||
|
internal protected string Identity { get; internal set; }
|
||
|
}
|
||
|
}
|