[This topic is part of the Microsoft Azure Storage Client Library 1.7, which has been deprecated. See
Storage Client Library for the latest version.]
Initializes a new instance of the
CloudPageBlob class using a relative URI to the blob, or to the snapshot if the blob is a snapshot.
Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
Usage
Visual Basic |
---|
Dim blobAddress As String
Dim snapshotTime As Nullable(Of DateTime)
Dim serviceClient As CloudBlobClient
Dim instance As New CloudPageBlob(blobAddress, snapshotTime, serviceClient) |
Syntax
Visual Basic |
---|
Public Sub New ( _
blobAddress As String, _
snapshotTime As Nullable(Of DateTime), _
serviceClient As CloudBlobClient _
) |
C# |
---|
public CloudPageBlob (
string blobAddress,
Nullable<DateTime> snapshotTime,
CloudBlobClient serviceClient
) |
C++ |
---|
public:
CloudPageBlob (
String^ blobAddress,
Nullable<DateTime> snapshotTime,
CloudBlobClient^ serviceClient
) |
Parameters
- blobAddress
Type: System.String
The relative URI to the blob, beginning with the container name.
- snapshotTime
Type: System.Nullable
The snapshot timestamp, if the blob is a snapshot.
- serviceClient
Type: Microsoft.WindowsAzure.StorageClient.CloudBlobClient
A client object that specifies the endpoint for the Blob service.
Platforms
See Also