「Microsoft Azure Configuration Manager」ライブラリはUAPアプリケーションと互換性がなく、Azure Storageに接続するためにCloudConfigurationManagerクラスにアクセスする必要があるようです。接続文字列を解析するために使用されます。「Microsoft Azure Configuration Manager」ライブラリは、UWPアプリでは使用できません。提案?
// Parse the connection string and return a reference to the storage account.
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
私はここで何かが足りないか、UWPアプリ開発者のために接続されて取得するための別のアプローチ多分あるのでしょうか?
私が参照してるガイド:1月あたりのようHERE
HttpClientを使用してREST APIを直接呼び出すことができます。 – gdc