Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Neo4j.Driver/Neo4j.Driver/Public/GraphDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static class GraphDatabase
/// </summary>
public static IBookmarkManagerFactory BookmarkManagerFactory => new BookmarkManagerFactory();

/// <summary>Returns a driver for a Neo4j instance with default configuration settings.</summary>
/// <summary>Returns a driver for a Neo4j instance with default configuration settings and disabled authentication.</summary>
/// <param name="uri">
/// The URI to the Neo4j instance. Should be in the form
/// <c>protocol://&lt;server location&gt;:&lt;port&gt;</c>. If <c>port</c> is not supplied the default of <c>7687</c> will
Expand All @@ -47,7 +47,7 @@ public static IDriver Driver(string uri)
return Driver(new Uri(uri));
}

/// <summary>Returns a driver for a Neo4j instance with default configuration settings.</summary>
/// <summary>Returns a driver for a Neo4j instance with default configuration settings and disabled authentication.</summary>
/// <param name="uri">
/// The URI to the Neo4j instance. Should be in the form
/// <c>protocol://&lt;server location&gt;:&lt;port&gt;</c>. If <c>port</c> is not supplied the default of <c>7687</c> will
Expand All @@ -63,7 +63,7 @@ public static IDriver Driver(Uri uri)
return Driver(uri, (Action<ConfigBuilder>)null);
}

/// <summary>Returns a driver for a Neo4j instance with custom configuration.</summary>
/// <summary>Returns a driver for a Neo4j instance with custom configuration and disabled authentication.</summary>
/// <param name="uri">
/// The URI to the Neo4j instance. Should be in the form
/// <c>protocol://&lt;server location&gt;:&lt;port&gt;</c>. If <c>port</c> is not supplied the default of <c>7687</c> will
Expand All @@ -84,7 +84,7 @@ public static IDriver Driver(string uri, Action<ConfigBuilder> action)
return Driver(new Uri(uri), action);
}

/// <summary>Returns a driver for a Neo4j instance with custom configuration.</summary>
/// <summary>Returns a driver for a Neo4j instance with custom configuration and disabled authentication.</summary>
/// <param name="uri">
/// The URI to the Neo4j instance. Should be in the form
/// <c>protocol://&lt;server location&gt;:&lt;port&gt;</c>. If <c>port</c> is not supplied the default of <c>7687</c> will
Expand Down