Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets the number of bytes copied in the operation so far.

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

Syntax

 
public Nullable<long> BytesCopied { get; internal set; }
 
public:
property Nullable<long long> BytesCopied {
	Nullable<long long> get();
	internal: void set(Nullable<long long> value);
}
 
member BytesCopied : Nullable<int64> with get, internal set
 
Public Property BytesCopied As Nullable(OfLong)
	Get
	Friend Set
End Property

Property Value

Type: System.Nullable<Int64>System::Nullable<Int64>System.Nullable<Int64>System.Nullable(Of Int64)

The number of bytes copied in the operation so far, or null.

Return to top