ConnectionStringParser.Parse Method (String)
Parses the connection string into a collection of key and value pairs.
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public static IDictionary<string, string> Parse(
string connectionString
)
public:
static IDictionary<String^, String^>^ Parse(
String^ connectionString
)
static member Parse :
connectionString:string -> IDictionary<string, string>
Public Shared Function Parse (
connectionString As String
) As IDictionary(Of String, String)
Parameters
connectionString
Type: System.StringThe connection string to parse.
Return Value
Type: System.Collections.Generic.IDictionary<String, String>
The parsed connection string.
Remarks
Case-insensitive keys and multiple occurrences of the same key are supported, but not multiple values for keys.
See Also
ConnectionStringParser Class
Microsoft.WindowsAzure.Common.Internals Namespace
Return to top