System.Net.Http.Headers.AuthenticationHeaderValue.Parse C# (CSharp) Méthode

Parse() public static méthode

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