SharedAccessBlobPolicies.Contains Method (KeyValuePair(String, SharedAccessBlobPolicy)) (Microsoft.WindowsAzure.Storage.Blob)

From Microsoft Windows Azure Storage Blob

Determines whether the collection of shared access policies contains the key and SharedAccessBlobPolicy value in the specified KeyValuePair<TKey, TValue><TKey, TValue><'TKey, 'TValue>(Of TKey, TValue) object.

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

Syntax

 
public bool Contains(
	KeyValuePair<string, SharedAccessBlobPolicy> item
)
 
public:
virtual bool Contains(
	KeyValuePair<String^, SharedAccessBlobPolicy^> item
) sealed
 
abstract Contains : 
        item:KeyValuePair<string, SharedAccessBlobPolicy> -> bool
override Contains : 
        item:KeyValuePair<string, SharedAccessBlobPolicy> -> bool
 
Public Function Contains (
	item As KeyValuePair(OfString, SharedAccessBlobPolicy)
) As Boolean

Return Value

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

true if the shared access policies collection contains the specified key/value; otherwise, false.

Return to top