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();
        }