SharedAccessBlobPolicies Class

Definition

Represents the collection of shared access policies defined for a container.

public sealed class SharedAccessBlobPolicies : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string,Microsoft.Azure.Storage.Blob.SharedAccessBlobPolicy>>, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Storage.Blob.SharedAccessBlobPolicy>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,Microsoft.Azure.Storage.Blob.SharedAccessBlobPolicy>>
type SharedAccessBlobPolicies = class
    interface IDictionary<string, SharedAccessBlobPolicy>
    interface ICollection<KeyValuePair<string, SharedAccessBlobPolicy>>
    interface seq<KeyValuePair<string, SharedAccessBlobPolicy>>
    interface IEnumerable
Public NotInheritable Class SharedAccessBlobPolicies
Implements ICollection(Of KeyValuePair(Of String, SharedAccessBlobPolicy)), IDictionary(Of String, SharedAccessBlobPolicy), IEnumerable(Of KeyValuePair(Of String, SharedAccessBlobPolicy))
Inheritance
SharedAccessBlobPolicies
Implements

Constructors

SharedAccessBlobPolicies()

Properties

Count

Gets the number of key/SharedAccessBlobPolicy value pairs contained in the shared access policies collection.

IsReadOnly

Gets a value indicating whether the collection of shared access policies is read-only.

Item[String]

Gets or sets the SharedAccessBlobPolicy item associated with the specified key.

Keys

Gets a collection containing the keys in the shared access policies collection.

Values

Gets a collection containing the values in the shared access policies collection.

Methods

Add(KeyValuePair<String,SharedAccessBlobPolicy>)

Adds the specified key/SharedAccessBlobPolicy value, stored in a KeyValuePair<TKey,TValue>, to the collection of shared access policies.

Add(String, SharedAccessBlobPolicy)

Adds the specified key and SharedAccessBlobPolicy value to the collection of shared access policies.

Clear()

Removes all keys and SharedAccessBlobPolicy values from the shared access collection.

Contains(KeyValuePair<String,SharedAccessBlobPolicy>)

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

ContainsKey(String)

Determines whether the collection of shared access policies contains the specified key.

CopyTo(KeyValuePair<String,SharedAccessBlobPolicy>[], Int32)

Copies each key in the key/SharedAccessBlobPolicy value pair to a compatible one-dimensional array, starting at the specified index of the target array.

GetEnumerator()

Returns an enumerator that iterates through the collection of shared access policies.

Remove(KeyValuePair<String,SharedAccessBlobPolicy>)

Removes the SharedAccessBlobPolicy value, specified in the KeyValuePair<TKey,TValue> object, from the shared access policies collection.

Remove(String)

Removes the value with the specified key from the shared access policies collection.

TryGetValue(String, SharedAccessBlobPolicy)

Gets the SharedAccessBlobPolicy item associated with the specified key.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through the collection of shared access policies.

Extension Methods

ToCommaSeparatedString<T>(IEnumerable<T>)

Converts the elements of a collection to strings and concatenates them into a comma-separated list, or returns null for null or empty collections.

AddRange<TKey,TValue>(IDictionary<TKey,TValue>, IReadOnlyDictionary<TKey,TValue>)

Applies to