Beispiel #1
0
        private async Task FileShareClient(string shareReferenceName, string connectionString)
        {
            StorageAccount = CloudStorageAccount.Parse(connectionString);
            CloudFileClient fileClient = StorageAccount.CreateCloudFileClient();

            Share = fileClient.GetShareReference(shareReferenceName);
            await Share.CreateIfNotExistsAsync();
        }