Files
FSI.BT.IR.Tools/FSI.Lib/Helpers/IdentityHelpers.cs
maier_S 1a74bce2ad Squashed 'FSI.Lib/' content from commit dceb500
git-subtree-dir: FSI.Lib
git-subtree-split: dceb5008a2176c2b8ab5e55a73b1c25d31a7f841
2022-03-14 11:02:41 +01:00

17 lines
372 B
C#

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;
}
}
}