API.DataAccess.StorageManager.GetBlockBlob C# (CSharp) Метод

GetBlockBlob() приватный Метод

Given the name of a block blob, gets a reference to allow read/write to that blob.
private GetBlockBlob ( string blockBlobName ) : Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob
blockBlobName string
Результат Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob
        private CloudBlockBlob GetBlockBlob(string blockBlobName)
        {
            CloudStorageAccount account = CloudStorageAccount.Parse(_connectionString);

            CloudBlobClient client = account.CreateCloudBlobClient();

            CloudBlobContainer container = client.GetContainerReference(_containerName);

            return container.GetBlockBlobReference(blockBlobName);
        }
    }