Adf.Core.Binding.BindManager.GetListFor C# (CSharp) Метод

GetListFor() публичный статический Метод

public static GetListFor ( PropertyInfo property ) : IEnumerable
property System.Reflection.PropertyInfo
Результат IEnumerable
        public static IEnumerable GetListFor(PropertyInfo property)
        {
            if (property == null) return null;

            var func = StateManager.Personal[GetKey(property)] as Func<IEnumerable>;
            if (func == null) return null;

            return func.Invoke();
        }