Exemple #1
0
        /// <summary>
        ///   Clones this instance.
        /// </summary>
        /// <returns>A deep copy of this instance.</returns>
        public ViewStateStorageSettings Clone()
        {
            var ret = new ViewStateStorageSettings
            {
                _behavior         = _behavior,
                _compressed       = _compressed,
                _connectionString = _connectionString,
                _method           = _method,
                _storagePath      = _storagePath,
                _tableName        = _tableName,
                _fileage          = _fileage
            };

            return(ret);
        }
 /// <summary>
 ///   Clones this instance.
 /// </summary>
 /// <returns>A deep copy of this instance.</returns>
 public ViewStateStorageSettings Clone()
 {
     var ret = new ViewStateStorageSettings
     {
         _behavior = _behavior,
         _compressed = _compressed,
         _connectionString = _connectionString,
         _method = _method,
         _storagePath = _storagePath,
         _tableName = _tableName,
         _fileage = _fileage
     };
     return ret;
 }