Quantcast
Channel: .NET Tutorials
Viewing all articles
Browse latest Browse all 10

Check if the current user is Administrator using C#

$
0
0
using System.Security.Principal;   private bool isAdministrator() { WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent(); WindowsPrincipal windowsPrincipal = new WindowsPrincipal(windowsIdentity); return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator); }

Viewing all articles
Browse latest Browse all 10

Trending Articles