Squashed 'FSI.Lib/' content from commit 6aa4846
git-subtree-dir: FSI.Lib git-subtree-split: 6aa48465a834a7bfdd9cbeae8d2e4f769d0c0ff8
This commit is contained in:
16
FSI.Lib/Helpers/IdentityHelpers.cs
Normal file
16
FSI.Lib/Helpers/IdentityHelpers.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Security.Principal;
|
||||
|
||||
namespace FSI.Lib.Helpers
|
||||
{
|
||||
public static class IdentityHelpers
|
||||
{
|
||||
public static string ShortName(this WindowsIdentity Identity)
|
||||
{
|
||||
if (null != Identity)
|
||||
{
|
||||
return Identity.Name.Split(new char[] { '\\' })[1];
|
||||
}
|
||||
return string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user