Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Gets the total number of bytes in the source of the copy.

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

Syntax

 
public Nullable<long> TotalBytes { get; internal set; }
 
public:
property Nullable<long long> TotalBytes {
	Nullable<long long> get();
	internal: void set(Nullable<long long> value);
}
 
member TotalBytes : Nullable<int64> with get, internal set
 
Public Property TotalBytes 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 in the source, or null.

Return to top