We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b7c83 commit d08b577Copy full SHA for d08b577
projects/client/RabbitMQ.Client/src/client/api/ConnectionFactory.cs
@@ -81,7 +81,7 @@ namespace RabbitMQ.Client
81
///</para>
82
///<example><code>
83
/// ConnectionFactory factory = new ConnectionFactory();
84
- /// factory.Uri = "amqp://guest:guest@localhost:5672/";
+ /// factory.Uri = "amqp://";
85
/// IConnection conn = factory.CreateConnection();
86
/// ...
87
///</code></example>
@@ -386,7 +386,7 @@ that has at least the path segment "/". */
386
387
//<summary>Unescape a string, protecting '+'.</summary>
388
private string UriDecode(string uri) {
389
- return Uri.UnescapeDataString(uri.Replace("+", "%2B"));
+ return System.Uri.UnescapeDataString(uri.Replace("+", "%2B"));
390
}
391
392
0 commit comments