diff options
Diffstat (limited to 'lang/csharp/src/CursorConfig.cs')
-rw-r--r-- | lang/csharp/src/CursorConfig.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lang/csharp/src/CursorConfig.cs b/lang/csharp/src/CursorConfig.cs index 8410b612..aa2abf5d 100644 --- a/lang/csharp/src/CursorConfig.cs +++ b/lang/csharp/src/CursorConfig.cs @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 2009, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved. * */ using System; @@ -15,7 +15,7 @@ namespace BerkeleyDB { /// </summary> public class CursorConfig { /// <summary> - /// The isolation degree the cursor should use. + /// The isolation degree that the cursor should use. /// </summary> /// <remarks> /// <para> @@ -24,7 +24,7 @@ namespace BerkeleyDB { /// cursor to be modified or deleted prior to the commit of the /// transaction for this cursor. /// </para> - /// <para> + /// <para> /// <see cref="Isolation.DEGREE_ONE"/> allows read operations performed /// by the cursor to return modified but not yet committed data. /// Silently ignored if the <see cref="DatabaseConfig.ReadUncommitted"/> @@ -33,7 +33,7 @@ namespace BerkeleyDB { /// </remarks> public Isolation IsolationDegree; /// <summary> - /// If true, specify that the cursor will be used to update the + /// If true, specify that the cursor is used to update the /// database. The underlying database environment must have been opened /// with <see cref="DatabaseEnvironmentConfig.UseCDB"/> set. /// </summary> @@ -42,14 +42,14 @@ namespace BerkeleyDB { /// <para> /// Configure a transactional cursor to operate with read-only snapshot /// isolation. For databases with <see cref="DatabaseConfig.UseMVCC"/> - /// set, data values will be read as they are when the cursor is opened, + /// set, data values are read as they are when the cursor is opened, /// without taking read locks. /// </para> - /// <para> + /// <para> /// This setting implicitly begins a transaction that is committed when /// the cursor is closed. /// </para> - /// <para> + /// <para> /// This setting is silently ignored if /// <see cref="DatabaseConfig.UseMVCC"/> is not set on the underlying /// database or if a transaction is supplied to @@ -63,7 +63,7 @@ namespace BerkeleyDB { /// <remarks> /// The priority of a page biases the replacement algorithm to be more /// or less likely to discard a page when space is needed in the buffer - /// pool. The bias is temporary, and pages will eventually be discarded + /// pool. The bias is temporary, and pages are eventually discarded /// if they are not referenced again. The setting is only advisory, and /// does not guarantee pages will be treated in a specific way. /// </remarks> |