SharedAccessTablePolicies.Add Method

Definition

Overloads

Add(KeyValuePair<String,SharedAccessTablePolicy>)

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

Add(String, SharedAccessTablePolicy)

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

Add(KeyValuePair<String,SharedAccessTablePolicy>)

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

public void Add (System.Collections.Generic.KeyValuePair<string,Microsoft.Azure.Cosmos.Table.SharedAccessTablePolicy> item);
abstract member Add : System.Collections.Generic.KeyValuePair<string, Microsoft.Azure.Cosmos.Table.SharedAccessTablePolicy> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<string, Microsoft.Azure.Cosmos.Table.SharedAccessTablePolicy> -> unit
Public Sub Add (item As KeyValuePair(Of String, SharedAccessTablePolicy))

Parameters

item
KeyValuePair<String,SharedAccessTablePolicy>

The KeyValuePair<TKey,TValue> object, containing a key/SharedAccessTablePolicy value pair, to add to the shared access policies collection.

Implements

Applies to

Add(String, SharedAccessTablePolicy)

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

public void Add (string key, Microsoft.Azure.Cosmos.Table.SharedAccessTablePolicy value);
abstract member Add : string * Microsoft.Azure.Cosmos.Table.SharedAccessTablePolicy -> unit
override this.Add : string * Microsoft.Azure.Cosmos.Table.SharedAccessTablePolicy -> unit
Public Sub Add (key As String, value As SharedAccessTablePolicy)

Parameters

key
String

The key of the SharedAccessTablePolicy value to add.

value
SharedAccessTablePolicy

The SharedAccessTablePolicy value to add to the collection of shared access policies.

Implements

Applies to