Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets the SharedAccessBlobPolicy item associated with the specified key.

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

Syntax

 
public bool TryGetValue(
	string key,
	out SharedAccessBlobPolicy value
)
 
public:
virtual bool TryGetValue(
	String^ key,
	[OutAttribute] SharedAccessBlobPolicy^% value
) sealed
 
abstract TryGetValue : 
        key:string *
        value:SharedAccessBlobPolicy byref -> bool
override TryGetValue : 
        key:string *
        value:SharedAccessBlobPolicy byref -> bool
 
Public Function TryGetValue (
	key As String,
	<OutAttribute> ByRef value As SharedAccessBlobPolicy
) As Boolean

Return Value

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

The SharedAccessBlobPolicy item associated with the specified key, if the key is found; otherwise, the default value for the SharedAccessBlobPolicy type.

Return to top