Umbraco.Belle.System.ManifestParser.GetPropertyEditors C# (CSharp) Method

GetPropertyEditors() static private method

Parse the property editors from the json array
static private GetPropertyEditors ( Newtonsoft.Json.Linq.JArray jsonEditors ) : IEnumerable
jsonEditors Newtonsoft.Json.Linq.JArray
return IEnumerable
        internal static IEnumerable<PropertyEditor> GetPropertyEditors(JArray jsonEditors)
        {
            return JsonConvert.DeserializeObject<IEnumerable<PropertyEditor>>(jsonEditors.ToString(), new PropertyEditorConverter());
        }