CloudinaryDotNet.Actions.ExplicitResult.Parse C# (CSharp) Метод

Parse() статический приватный Метод

Parses HTTP response and creates new instance of this class
static private Parse ( HttpWebResponse response ) : ExplicitResult
response System.Net.HttpWebResponse HTTP response
Результат ExplicitResult
        internal static new ExplicitResult Parse(HttpWebResponse response)
        {
            ExplicitResult result = Parse<ExplicitResult>(response);

            if (result.JsonObj != null)
            {
                var responsiveBreakpoints = result.JsonObj["responsive_breakpoints"];
                if (responsiveBreakpoints != null)
                {
                    result.ResponsiveBreakpoints = responsiveBreakpoints.ToObject<List<ResponsiveBreakpointList>>();
                }
            }

            return result;
        }
ExplicitResult