summaryrefslogtreecommitdiff
path: root/lang/csharp/src/BackupOptions.cs
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2015-02-17 17:25:57 +0000
committer <>2015-03-17 16:26:24 +0000
commit780b92ada9afcf1d58085a83a0b9e6bc982203d1 (patch)
tree598f8b9fa431b228d29897e798de4ac0c1d3d970 /lang/csharp/src/BackupOptions.cs
parent7a2660ba9cc2dc03a69ddfcfd95369395cc87444 (diff)
downloadberkeleydb-master.tar.gz
Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz.HEADdb-6.1.23master
Diffstat (limited to 'lang/csharp/src/BackupOptions.cs')
-rw-r--r--lang/csharp/src/BackupOptions.cs17
1 files changed, 8 insertions, 9 deletions
diff --git a/lang/csharp/src/BackupOptions.cs b/lang/csharp/src/BackupOptions.cs
index c8d48083..de5c4806 100644
--- a/lang/csharp/src/BackupOptions.cs
+++ b/lang/csharp/src/BackupOptions.cs
@@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2011, 2012 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved.
*
*/
using System;
@@ -17,14 +17,13 @@ namespace BerkeleyDB {
public class BackupOptions {
/// <summary>
/// If true, all files are removed from the target backup directory
- /// before the back up is performed.
+ /// before the backup is performed.
/// </summary>
public bool Clean;
/// <summary>
- /// If true, all ordinary files that might exist in the environment, as
- /// well as might exist in the environment's subdirectories, are backed
- /// up; otherwise, only files necessary for the proper operation of
- /// Berkeley DB are backed up.
+ /// If true, all ordinary files that might exist in the environment or
+ /// in the environment's subdirectories are backed up; otherwise, only files
+ /// necessary for the proper operation of Berkeley DB are backed up.
/// </summary>
public bool Files;
/// <summary>
@@ -34,20 +33,20 @@ namespace BerkeleyDB {
public bool NoLogs;
/// <summary>
/// If true, then regardless of the directory structure used by the
- /// source environment, place all back up files in the single target
+ /// source environment, place all backup files in the single target
/// directory. Use this option if absolute path names to your
/// environment directory and the files within that directory are
/// required by your application.
/// </summary>
public bool SingleDir;
/// <summary>
- /// If true, perform an incremental back up, instead of a full back up.
+ /// If true, perform an incremental back up, instead of a full backup.
/// When this option is specified, only log files are copied to the
/// target directory.
/// </summary>
public bool Update;
/// <summary>
- /// Specify whether the target directory will be created if it does not
+ /// Specify whether the target directory is created if it does not
/// already exist.
/// </summary>
public CreatePolicy Creation = CreatePolicy.NEVER;