Umbraco.Belle.System.ManifestParser.GetPropertyEditors C# (CSharp) 메소드

GetPropertyEditors() 정적인 개인적인 메소드

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