ZipEntry.CompressedSize 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 size of the compressed entry data. -or- Sets the size of the compressed entry data.
public virtual long CompressedSize { [Android.Runtime.Register("getCompressedSize", "()J", "GetGetCompressedSizeHandler")] get; [Android.Runtime.Register("setCompressedSize", "(J)V", "GetSetCompressedSize_JHandler")] set; }
[<get: Android.Runtime.Register("getCompressedSize", "()J", "GetGetCompressedSizeHandler")>]
[<set: Android.Runtime.Register("setCompressedSize", "(J)V", "GetSetCompressedSize_JHandler")>]
member this.CompressedSize : int64 with get, set
Property Value
the size of the compressed entry data, or -1 if not known
- Attributes
Remarks
Property getter documentation:
Returns the size of the compressed entry data.
In the case of a stored entry, the compressed size will be the same as the uncompressed size of the entry.
Java documentation for java.util.zip.ZipEntry.getCompressedSize()
.
Property setter documentation:
Sets the size of the compressed entry data.
Java documentation for java.util.zip.ZipEntry.setCompressedSize(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.