码迷,mamicode.com
首页 > Windows程序 > 详细

C#:判断当前程序是否通过管理员运行

时间:2014-11-09 13:57:29      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   os   sp   div   on   

原文:C#:判断当前程序是否通过管理员运行

public bool IsAdministrator()
{
WindowsIdentity current = WindowsIdentity.GetCurrent();
WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}

 

 

 

 

转载声明:本文转载至http://www.zhoumy.cn/?p=9

C#:判断当前程序是否通过管理员运行

标签:style   blog   http   color   ar   os   sp   div   on   

原文地址:http://www.cnblogs.com/lonelyxmas/p/4084988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!