ZipEntry.Size Property

Definition

Returns the uncompressed size of the entry data. -or- Sets the uncompressed size of the entry data.

public virtual long Size { [Android.Runtime.Register("getSize", "()J", "GetGetSizeHandler")] get; [Android.Runtime.Register("setSize", "(J)V", "GetSetSize_JHandler")] set; }
[<get: Android.Runtime.Register("getSize", "()J", "GetGetSizeHandler")>]
[<set: Android.Runtime.Register("setSize", "(J)V", "GetSetSize_JHandler")>]
member this.Size : int64 with get, set

Property Value

the uncompressed size of the entry data, or -1 if not known

Attributes

Exceptions

if valuevalue > 0xFFFFFFFFL.

Remarks

Property getter documentation:

Returns the uncompressed size of the entry data.

Java documentation for java.util.zip.ZipEntry.getSize().

Property setter documentation:

Sets the uncompressed size of the entry data.

Java documentation for java.util.zip.ZipEntry.setSize(long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to