public static SessionPropertyDescriptor <TValue> Register(string name, Type sessionType)
        {
            SessionPropertyDescriptor <TValue> descriptor;

            DataPropertyDescriptor.RegisterPropertyDescriptor(sessionType, descriptor = new SessionPropertyDescriptor <TValue>(name, sessionType));
            return(descriptor);
        }
Esempio n. 2
0
        public static DataPropertyDescriptor <TValue> Register(string name, Type sessionType)
        {
            System.Diagnostics.Debug.Assert(!typeof(SessionBase).GetTypeInfo().IsAssignableFrom(typeof(TValue).GetTypeInfo()));

            DataPropertyDescriptor <TValue> descriptor;

            DataPropertyDescriptor.RegisterPropertyDescriptor(sessionType, descriptor = new DataPropertyDescriptor <TValue>(name, sessionType));
            return(descriptor);
        }