File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
tests/MongoDB.Driver.Tests/UnifiedTestOperations Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ public class ClientSessionOptions
48
48
public bool Snapshot { get ; set ; }
49
49
50
50
/// <summary>
51
- /// //TODO
51
+ /// Gets or sets the snapshot time. If set, Snapshot must be true.
52
+ /// <value> The snapshot time </value>
52
53
/// </summary>
53
54
public BsonTimestamp SnapshotTime { get ; set ; }
54
55
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public class CoreSessionOptions
37
37
/// <param name="isImplicit">if set to <c>true</c> this session is an implicit session.</param>
38
38
/// <param name="isSnapshot">if set to <c>true</c> this session is a snapshot session.</param>
39
39
/// <param name="defaultTransactionOptions">The default transaction options.</param>
40
- /// <param name="snapshotTime">//TODO </param>
40
+ /// <param name="snapshotTime">The snapshot time. If this is set, isSnapshot must be true. </param>
41
41
public CoreSessionOptions (
42
42
bool isCausallyConsistent = false ,
43
43
bool isImplicit = false ,
Original file line number Diff line number Diff line change
1
+ /* Copyright 2010-present MongoDB Inc.
2
+ *
3
+ * Licensed under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License.
5
+ * You may obtain a copy of the License at
6
+ *
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software
10
+ * distributed under the License is distributed on an "AS IS" BASIS,
11
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ * See the License for the specific language governing permissions and
13
+ * limitations under the License.
14
+ */
15
+
16
+ namespace MongoDB . Driver . Tests . UnifiedTestOperations ;
17
+
18
+ public class UnifiedGetSnapshotOperation
19
+ {
20
+
21
+ }
You can’t perform that action at this time.
0 commit comments