Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Gets the SharedAccessQueuePolicy item associated with the specified key.

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

Syntax

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

Return Value

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

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

Return to top