ZipEntry.Size Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 value
value
> 0xFFFFFFFFL.
if value
.
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.