summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Client/Client/AmqBrokerInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dotnet/Qpid.Client/Client/AmqBrokerInfo.cs')
-rw-r--r--dotnet/Qpid.Client/Client/AmqBrokerInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotnet/Qpid.Client/Client/AmqBrokerInfo.cs b/dotnet/Qpid.Client/Client/AmqBrokerInfo.cs
index 3fc2512efb..36dd93d3d3 100644
--- a/dotnet/Qpid.Client/Client/AmqBrokerInfo.cs
+++ b/dotnet/Qpid.Client/Client/AmqBrokerInfo.cs
@@ -102,7 +102,7 @@ namespace Qpid.Client
// Fix for when there is port data but it is not automatically parseable by getPort().
String auth = connection.Authority;
- if (auth != null && auth.Contains(":"))
+ if (auth != null && auth.IndexOf(':') != -1)
{
int start = auth.IndexOf(":") + 1;
int end = start;