Umbraco.Belle.System.ManifestParser.GetPropertyEditors C# (CSharp) Méthode

GetPropertyEditors() static private méthode

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