Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Indicates whether a connection string can be parsed to return a CloudStorageAccount object.

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

Syntax

 
public static bool TryParse(
	string connectionString,
	out CloudStorageAccount account
)
 
public:
static bool TryParse(
	String^ connectionString,
	[OutAttribute] CloudStorageAccount^% account
)
 
static member TryParse : 
        connectionString:string *
        account:CloudStorageAccount byref -> bool
 
Public Shared Function TryParse (
	connectionString As String,
	<OutAttribute> ByRef account As CloudStorageAccount
) As Boolean

Return Value

Type: System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean

true if the connection string was successfully parsed; otherwise, false.

Return to top