Adf.Core.Binding.BindManager.RegisterScope C# (CSharp) 메소드

RegisterScope() 공개 정적인 메소드

public static RegisterScope ( PropertyInfo property, Func collection ) : void
property System.Reflection.PropertyInfo
collection Func
리턴 void
        public static void RegisterScope(PropertyInfo property, Func<IEnumerable> collection)
        {
            if (property == null) throw new ArgumentNullException("property");

            StateManager.Personal[GetKey(property)] = collection;
        }