SharedAccessTablePolicies.Item Property

Windows Runtime Azure Storage Client Library

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

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

Usage

Visual Basic
Dim instance As SharedAccessTablePolicies
Dim key As String
Dim value As SharedAccessTablePolicy

value = instance(key)

instance(key) = value

Syntax

Visual Basic
Public Default Property Item ( _
	key As String _
) As SharedAccessTablePolicy
C#
public SharedAccessTablePolicy this [
	string key
] { get; set; }
C++
public:
virtual property SharedAccessTablePolicy^ default [String^] {
	SharedAccessTablePolicy^ get (String^ key) sealed;
	void set (String^ key, SharedAccessTablePolicy^ value) sealed;
}
J#
/** @property */
public final SharedAccessTablePolicy get_Item (String key)

/** @property */
public final void set_Item (String key, SharedAccessTablePolicy value)
JScript

Property Value

The SharedAccessTablePolicy item associated with the specified key, or null if key is not in the shared access policies collection.

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

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also