vote up 2 vote down star
1

Is there any built-in utility or helper to parse HttpContext.Current.User.Identity.Name to get separately domain name if exists and user?

Or is there any other class to do so?

I udnerstand that it's very easy to call String.Split("\") but just intresting

flag

74% accept rate
It's the simple questions we always forget to ask ourselves. Will look forward to any useful answers to this question. – Torbjørn Dec 8 '08 at 13:25

3 Answers

vote up 4 vote down check

This is better (easier to use, no opportunity of NullReferenceExcpetion and conforms MS coding guidelines about treating empty and null string equally):

public static string GetDomain(this IIdentity identity)
{
    string s = identity.Name;
    int stop = s.IndexOf("\\");
    return (stop > -1) ?  s.Substring(0, stop + 1) : string.Empty;
}

public static string GetLogin(this IIdentity identity)
{
    string s = identity.Name;
    int stop = s.IndexOf("\\");
    return (stop > -1) ? s.Substring(stop + 1, s.Length - stop - 1) : string.Empty;
}

Usage:

IIdentity id = HttpContext.Current.User.Identity;
id.GetLogin();
id.GetDomain();

This requires C# 3.0 compiler (or newer) and doesn't require 3.0 .Net for working after compilation.

link|flag
vote up 1 vote down

I don't think so, because System.Security.Principal.WindowsIdentity doesn't contain such members.

link|flag
vote up 1 vote down

I think No too, because I asked myself the same question the other day :D

You can try

public static string GetDomain(string s)
{
    int stop = s.IndexOf("\\");
    return (stop > -1) ?  s.Substring(0, stop + 1) : null;
}

public static string GetLogin(string s)
{
    int stop = s.IndexOf("\\");
    return (stop > -1) ? s.Substring(stop + 1, s.Length - stop - 1) : null;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.