コード例 #1
0
        private async Task <byte[]> DownloadFileWorksAsync(string fileName, CloudStorageCredentials credentials = null)
        {
            ICloudStorageClient client = new WebdavCloudStorageClient();

            if (credentials == null)
            {
                credentials = GetCredentials();
            }
            return(await client.DownloadFileAsync(fileName, credentials));
        }