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

Parse() public static method

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