Determines whether the collection of shared access policies contains the specified key.
Namespace: Microsoft.WindowsAzure.Storage.Blob
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As SharedAccessBlobPolicies
Dim key As String
Dim returnValue As Boolean
returnValue = instance.ContainsKey(key) |
Syntax
Visual Basic |
---|
Public Function ContainsKey ( _
key As String _
) As Boolean |
C# |
---|
public bool ContainsKey (
string key
) |
C++ |
---|
public:
virtual bool ContainsKey (
String^ key
) sealed |
J# |
---|
public final boolean ContainsKey (
String key
) |
JScript |
---|
public final function ContainsKey (
key : String
) : boolean |
Parameters
- key
The key to locate in the collection of shared access policies.
Return Value
true
if the collection of shared access policies contains an element with the specified key; otherwise,
false
.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
See Also