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
{{ message }}
This repository was archived by the owner on Aug 1, 2024. It is now read-only.
Which service(blob, file, queue, table) does this issue concern?
Blog storage
Which version of the SDK was used?
Microsoft.Azure.Storage.Blob Version=11.1.0
Which platform are you using? (ex: .NET Core 2.1)
.NET Framework 4.7.2
What problem was encountered?
When invoking Microsoft.Azure.Storage.CloudStorageAccount.Parse("UseDevelopmentStorage=True") the code throws a FormatException with the message "No valid combination of account information found."
How can we reproduce the problem in the simplest way?
Parse a blob connection (using CloudStorageAccount.Parse) string that's pointing to the storage account development emulator and use the endpoint "UseDevelopmentStorage=True;"
Have you found a mitigation/solution?
The solution is to change the call to use "UseDevelopmentStorage=true;" instead of "UseDevelopmentStorage=True;" - notice lower case letter "t" vs. upper case letter "T"