Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

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

Syntax

 
public void CopyTo(
	KeyValuePair<string, SharedAccessBlobPolicy>[] array,
	int arrayIndex
)
 
public:
virtual void CopyTo(
	array<KeyValuePair<String^, SharedAccessBlobPolicy^>>^ array,
	int arrayIndex
) sealed
 
abstract CopyTo : 
        array:KeyValuePair<string, SharedAccessBlobPolicy>[] *
        arrayIndex:int -> unit
override CopyTo : 
        array:KeyValuePair<string, SharedAccessBlobPolicy>[] *
        arrayIndex:int -> unit
 
Public Sub CopyTo (
	array As KeyValuePair(OfString, SharedAccessBlobPolicy)(),
	arrayIndex As Integer
)

Parameters

array
Type: System.Collections.Generic.KeyValuePair<String, SharedAccessBlobPolicy>[]array<System.Collections.Generic::KeyValuePair<String^, SharedAccessBlobPolicy^>>^System.Collections.Generic.KeyValuePair<String, SharedAccessBlobPolicy>[]System.Collections.Generic.KeyValuePair(Of String, SharedAccessBlobPolicy)()

The one-dimensional array of SharedAccessBlobPolicy objects that is the destination of the elements copied from the shared access policies collection.

arrayIndex
Type: System.Int32System::Int32System.Int32System.Int32

The zero-based index in array at which copying begins.

Return to top