C#如何判断当前用户是否输入某个域

2023-07-06   


代码如下:
   WindowsIdentity currentIdentity = WindowsIdentity.GetCurrent();
   WindowsPrincipal currentPrincipal = new WindowsPrincipal(currentIdentity);
   if (currentPrincipal.IsInRole(@”HZDomain Users”))
  
   this.button1.Text = “YEAH!”;
  


相关内容:

  1. C#如何判断当前用户是否输入某个域
  2. ASP.NET如何防止SQL注入
  3. C#里面如何判断一个Object是否是某种类型(如Boolean)?
  4. 星空联盟C# .net笔试题
  5. C#如何进行LDAP用户校验
  6. 北京某科技有限公司C# .net笔试题