Exemple #1
0
        private static bool GetProperty(PropertyName name, ISerializeStateBinary value)
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }

            return(c_manager.GetProperty(name, value));
        }
Exemple #2
0
        public static bool GetProperty(ISerializeStateBinary state, string prefix)
        {
            var name = CreatePropertyName(prefix, state.GetIdentifier());

            return(GetProperty(name, state));
        }
Exemple #3
0
 public static void SaveWindowState(ISerializeStateBinary window)
 {
     PropertyManager.SetProperty(window, SETTINGS_TYPE_WINDOWS);
 }
Exemple #4
0
 public static void LoadWindowState(ISerializeStateBinary window)
 {
     PropertyManager.GetProperty(window, SETTINGS_TYPE_WINDOWS);
 }