Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Initiates an asynchronous operation to upload a string of text to a blob.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
[DoesServiceRequestAttribute]
public virtual Task UploadTextAsync(
	string content
)
 
public:
[DoesServiceRequestAttribute]
virtual Task^ UploadTextAsync(
	String^ content
)
 
[<DoesServiceRequestAttribute>]
abstract UploadTextAsync : 
        content:string -> Task
[<DoesServiceRequestAttribute>]
override UploadTextAsync : 
        content:string -> Task
 
<DoesServiceRequestAttribute>
Public Overridable Function UploadTextAsync (
	content As String
) As Task

Parameters

content
Type: System.StringSystem::String^System.StringSystem.String

A string containing the text to upload.

Return to top