Microsoft.Http.Headers.CacheControl.GetDeltaSeconds C# (CSharp) Method

GetDeltaSeconds() static private method

static private GetDeltaSeconds ( string directive ) : System.TimeSpan
directive string
return System.TimeSpan
        static TimeSpan GetDeltaSeconds(string directive)
        {
            var t = directive.Split('=').Last().Trim();
            return TimeSpan.FromSeconds(int.Parse(t, CultureInfo.InvariantCulture));
        }