Given a blob storage connection string such as:
DefaultEndpointsProtocol=https;AccountName=foo;AccountKey=bar;EndpointSuffix=core.windows.net
Is there a known Microsoft object that this can be converted / deserialized into? I don't want to actually parse the string, but I need to extract the AccountName and AccountKey from the entire connection string, which I have as a string.
To pre-empt possible "Why do you want to do this?" questions... I have an existing class that requires the connection string to be injected as a string. To avoid breaking changes, I can't alter that. But I do need to add some methods in this class that need the AccountName and AccountKey as individual items.
Thanks!