Initializes a new instance of the
CloudBlockBlob class using an absolute URI to the blob.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim blobAbsoluteUri As Uri
Dim snapshotTime As Nullable(Of DateTimeOffset)
Dim credentials As StorageCredentials
Dim instance As New CloudBlockBlob(blobAbsoluteUri, snapshotTime, credentials) |
Syntax
Visual Basic |
---|
Public Sub New ( _
blobAbsoluteUri As Uri, _
snapshotTime As Nullable(Of DateTimeOffset), _
credentials As StorageCredentials _
) |
C# |
---|
public CloudBlockBlob (
Uri blobAbsoluteUri,
Nullable<DateTimeOffset> snapshotTime,
StorageCredentials credentials
) |
C++ |
---|
public:
CloudBlockBlob (
Uri^ blobAbsoluteUri,
Nullable<DateTimeOffset> snapshotTime,
StorageCredentials^ credentials
) |
J# |
---|
public CloudBlockBlob (
Uri blobAbsoluteUri,
Nullable<DateTimeOffset> snapshotTime,
StorageCredentials credentials
) |
JScript |
---|
public function CloudBlockBlob (
blobAbsoluteUri : Uri,
snapshotTime : Nullable<DateTimeOffset>,
credentials : StorageCredentials
) |
Parameters
- blobAbsoluteUri
A Uri specifying the absolute URI to the blob.
- snapshotTime
A DateTimeOffset specifying the snapshot timestamp, if the blob is a snapshot.
- credentials
A StorageCredentials object.
Remarks
Platforms
See Also