System.Net.Http.Headers.AuthenticationHeaderValue.Parse C# (CSharp) Метод

Parse() публичный статический Метод

public static Parse ( string input ) : AuthenticationHeaderValue
input string
Результат AuthenticationHeaderValue
        public static AuthenticationHeaderValue Parse(string input)
        {
            int index = 0;
            return (AuthenticationHeaderValue)GenericHeaderParser.SingleValueAuthenticationParser.ParseValue(
                input, null, ref index);
        }