IsolatedStorage.CurrentSize Propiedad

Definición

Precaución

IsolatedStorage.CurrentSize has been deprecated because it is not CLS Compliant. To get the current size use IsolatedStorage.UsedSize

Precaución

IsolatedStorage.CurrentSize has been deprecated because it is not CLS Compliant. To get the current size use IsolatedStorage.UsedSize instead.

Importante

Esta API no es conforme a CLS.

Obtiene un valor que representa el tamaño actual del almacenamiento aislado.

public:
 virtual property System::UInt64 CurrentSize { System::UInt64 get(); };
[System.CLSCompliant(false)]
[System.Obsolete("IsolatedStorage.CurrentSize has been deprecated because it is not CLS Compliant.  To get the current size use IsolatedStorage.UsedSize")]
public virtual ulong CurrentSize { get; }
[System.CLSCompliant(false)]
[System.Obsolete("IsolatedStorage.CurrentSize has been deprecated because it is not CLS Compliant. To get the current size use IsolatedStorage.UsedSize instead.")]
public virtual ulong CurrentSize { get; }
[System.CLSCompliant(false)]
public virtual ulong CurrentSize { get; }
[<System.CLSCompliant(false)>]
[<System.Obsolete("IsolatedStorage.CurrentSize has been deprecated because it is not CLS Compliant.  To get the current size use IsolatedStorage.UsedSize")>]
member this.CurrentSize : uint64
[<System.CLSCompliant(false)>]
[<System.Obsolete("IsolatedStorage.CurrentSize has been deprecated because it is not CLS Compliant. To get the current size use IsolatedStorage.UsedSize instead.")>]
member this.CurrentSize : uint64
[<System.CLSCompliant(false)>]
member this.CurrentSize : uint64
Public Overridable ReadOnly Property CurrentSize As ULong

Valor de propiedad

Número de unidades de almacenamiento que se utiliza en la actualidad dentro del ámbito de almacenamiento aislado.

Atributos

Excepciones

El tamaño actual del almacén aislado no está definido.

Comentarios

Esta propiedad representa el uso total de todos los recursos de almacenamiento dentro del ámbito de almacenamiento aislado. IsolatedStorageFile.CurrentSize implementa esta propiedad. En el caso de IsolatedStorageFile los objetos , este valor está en bytes. En el caso de implementaciones de otros objetos de almacenamiento, como una base de datos, este valor podría estar en otras unidades de almacenamiento.

Se aplica a