public static StorageSharedKeyCredential GetCredential()

in src/Libs/Common/Utils/ConnectionStringHelper.cs [17:21]


        public static StorageSharedKeyCredential GetCredential(string connectionString)
        {
            var csBuilder = new DbConnectionStringBuilder { ConnectionString = connectionString };
            return new StorageSharedKeyCredential((string)csBuilder["AccountName"], (string)csBuilder["AccountKey"]);
        }