File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Neo4j.Driver/Neo4j.Driver/V1 Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,18 @@ public interface IDriver : IDisposable
4646 /// <returns>An <see cref="ISession"/> that could be used to execute statements.</returns>
4747 ISession Session ( AccessMode defaultMode = AccessMode . Write , string bookmark = null ) ;
4848 }
49-
49+ /// <summary>
50+ /// Used by driver to route a cypher statement to a write server or a read server.
51+ /// </summary>
5052 public enum AccessMode
5153 {
52- Read , Write
54+ /// <summary>
55+ /// Requires cypher statememt to be carried out on a read server
56+ /// </summary>
57+ Read ,
58+ /// <summary>
59+ /// Requires cypher statement to be executed on a write server
60+ /// </summary>
61+ Write
5362 }
5463}
Original file line number Diff line number Diff line change 1616// limitations under the License.
1717namespace Neo4j . Driver . V1
1818{
19+ /// <summary>
20+ /// Provides basic information of the server where the cypher statement was executed.
21+ /// </summary>
1922 public interface IServerInfo
2023 {
2124 /// <summary>
You can’t perform that action at this time.
0 commit comments