You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
428 B
18 lines
428 B
5 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; }
|
||
|
}
|
||
|
}
|