【发布时间】:2016-12-16 10:45:35
【问题描述】:
我目前需要将文件存储到 azure blob 存储中。我遇到了两种不同的资源,但不确定第二组包的用途。
我可能只需要前两个包来访问 Blob 存储。
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob;
来自 https://docs.microsoft.com/en-us/azure/app-service-mobile/app-service-mobile-xamarin-forms-blob-storage,它说连接到 Xamarin.Forms 应用中的 Azure 存储。
using Microsoft.WindowsAzure.MobileServices.Files;
using Microsoft.WindowsAzure.MobileServices.Files.Metadata;
using Microsoft.WindowsAzure.MobileServices.Files.Sync;
using Microsoft.WindowsAzure.MobileServices.Sync;
第一组包的问题要求我使用共享库而不是 PCL。
【问题讨论】:
标签: azure xamarin storage azure-blob-storage