0 out of 2 rated this helpful - Rate this topic

CloudBlob.UploadText Method (String)

Uploads a string of text to a block blob.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Usage

'Declaration
Public Overridable Sub UploadText ( _
	content As String _
)

Parameters

content

Type: System.String

The text to upload, which will be encoded as a UTF-8 string.

The following code example uploads a blob from text. This example overwrites the blob if it already exists in the container.

static void UploadBlobFromText(Uri blobEndpoint, string accountName, string accountKey)
{
    // Create service client for credentialed access to the blob.
    CloudBlobClient blobClient = 
        new CloudBlobClient(blobEndpoint, 
            new StorageCredentialsAccountAndKey(accountName, accountKey));

    // Get a reference to the blob.
    CloudBlob blob = blobClient.GetBlobReference("mycontainer/myblob.txt");

    // Upload the blob from a text string.
    blob.UploadText("Upload a blob from text.");
}

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.