System.Net.Http.Headers.AuthenticationHeaderValue.Parse C# (CSharp) Method

Parse() public static method

public static Parse ( string input ) : AuthenticationHeaderValue
input string
return AuthenticationHeaderValue
        public static AuthenticationHeaderValue Parse(string input)
        {
            int index = 0;
            return (AuthenticationHeaderValue)GenericHeaderParser.SingleValueAuthenticationParser.ParseValue(
                input, null, ref index);
        }