You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using Parse function in SapConnectionParameters.cs connectionString with multiple equal signs causing issues and does not work as intended.
Easy to reproduce:
Regex: "^\s*(?\S*)\s*=\s*(?\S*)\s*$"
Input: something=my=password
Output: key="something=my" value="password"
This issue can be avoided by using "SapConnection(SapConnectionParameters parameters)" constructor instead of "public SapConnection(string connectionString)". But it would be great to fix it.
The text was updated successfully, but these errors were encountered:
While using Parse function in SapConnectionParameters.cs connectionString with multiple equal signs causing issues and does not work as intended.
Easy to reproduce:
Regex: "^\s*(?\S*)\s*=\s*(?\S*)\s*$"
Input: something=my=password
Output: key="something=my" value="password"
This issue can be avoided by using "SapConnection(SapConnectionParameters parameters)" constructor instead of "public SapConnection(string connectionString)". But it would be great to fix it.
The text was updated successfully, but these errors were encountered: