Gets a reference to a block blob in this virtual directory.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As CloudBlobDirectory
Dim blobName As String
Dim returnValue As CloudBlockBlob
returnValue = instance.GetBlockBlobReference(blobName) |
Syntax
Visual Basic |
---|
Public Function GetBlockBlobReference ( _
blobName As String _
) As CloudBlockBlob |
C# |
---|
public CloudBlockBlob GetBlockBlobReference (
string blobName
) |
C++ |
---|
public:
CloudBlockBlob^ GetBlockBlobReference (
String^ blobName
) |
J# |
---|
public CloudBlockBlob GetBlockBlobReference (
String blobName
) |
JScript |
---|
public function GetBlockBlobReference (
blobName : String
) : CloudBlockBlob |
Parameters
- blobName
A string containing the name of the blob.
Return Value
A
CloudBlockBlob object.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also