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

Parse() public static method

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