Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

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

Syntax

 
public bool Remove(
	string key
)
 
public:
virtual bool Remove(
	String^ key
) sealed
 
abstract Remove : 
        key:string -> bool
override Remove : 
        key:string -> bool
 
Public Function Remove (
	key As String
) As Boolean

Parameters

key
Type: System.StringSystem::String^System.StringSystem.String

A string containing the key of the SharedAccessBlobPolicy item to remove.

Return Value

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

true if the element is successfully found and removed; otherwise, false. This method returns false if the key is not found.

Return to top