public class ZipFile extends NetObject
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.IO.Compression.ZipFile
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.IO.Compression.ZipFile, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System.IO.Compression.ZipFile
|
static java.lang.String |
className
Qualified class name: System.IO.Compression.ZipFile
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
ZipFile() |
ZipFile(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static ZipFile |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into ZipFile, a cast assert is made to check if types are compatible. |
static void |
CreateFromDirectory(java.lang.String sourceDirectoryName,
Stream destination) |
static void |
CreateFromDirectory(java.lang.String sourceDirectoryName,
Stream destination,
CompressionLevel compressionLevel,
boolean includeBaseDirectory) |
static void |
CreateFromDirectory(java.lang.String sourceDirectoryName,
Stream destination,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
Encoding entryNameEncoding) |
static void |
CreateFromDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName) |
static void |
CreateFromDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CompressionLevel compressionLevel,
boolean includeBaseDirectory) |
static void |
CreateFromDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
Encoding entryNameEncoding) |
static Task |
CreateFromDirectoryAsync(java.lang.String sourceDirectoryName,
Stream destination,
CancellationToken cancellationToken) |
static Task |
CreateFromDirectoryAsync(java.lang.String sourceDirectoryName,
Stream destination,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
CancellationToken cancellationToken) |
static Task |
CreateFromDirectoryAsync(java.lang.String sourceDirectoryName,
Stream destination,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
Encoding entryNameEncoding,
CancellationToken cancellationToken) |
static Task |
CreateFromDirectoryAsync(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CancellationToken cancellationToken) |
static Task |
CreateFromDirectoryAsync(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
CancellationToken cancellationToken) |
static Task |
CreateFromDirectoryAsync(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
Encoding entryNameEncoding,
CancellationToken cancellationToken) |
static void |
ExtractToDirectory(Stream source,
java.lang.String destinationDirectoryName) |
static void |
ExtractToDirectory(Stream source,
java.lang.String destinationDirectoryName,
boolean overwriteFiles) |
static void |
ExtractToDirectory(Stream source,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding) |
static void |
ExtractToDirectory(Stream source,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
boolean overwriteFiles) |
static void |
ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName) |
static void |
ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
boolean overwriteFiles) |
static void |
ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding) |
static void |
ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
boolean overwriteFiles) |
static Task |
ExtractToDirectoryAsync(Stream source,
java.lang.String destinationDirectoryName,
boolean overwriteFiles,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(Stream source,
java.lang.String destinationDirectoryName,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(Stream source,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
boolean overwriteFiles,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(Stream source,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
boolean overwriteFiles,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
boolean overwriteFiles,
CancellationToken cancellationToken) |
static Task |
ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
CancellationToken cancellationToken) |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
static ZipArchive |
Open(java.lang.String archiveFileName,
ZipArchiveMode mode) |
static ZipArchive |
Open(java.lang.String archiveFileName,
ZipArchiveMode mode,
Encoding entryNameEncoding) |
static ZipArchive |
OpenRead(java.lang.String archiveFileName) |
void |
setJCOInstance(JCObject instance) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public ZipFile()
throws java.lang.Throwable
java.lang.Throwablepublic ZipFile(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic static ZipFile cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into ZipFile, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedZipFile instancejava.lang.Throwable - in case of error during cast operationpublic static void CreateFromDirectory(java.lang.String sourceDirectoryName,
Stream destination)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
CultureNotFoundException,
ObjectDisposedException,
ArrayTypeMismatchException,
IOException,
InvalidDataException,
NullReferenceException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionNullReferenceExceptionpublic static void CreateFromDirectory(java.lang.String sourceDirectoryName,
Stream destination,
CompressionLevel compressionLevel,
boolean includeBaseDirectory)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
CultureNotFoundException,
ObjectDisposedException,
ArrayTypeMismatchException,
IOException,
InvalidDataException,
NullReferenceException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionNullReferenceExceptionpublic static void CreateFromDirectory(java.lang.String sourceDirectoryName,
Stream destination,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
Encoding entryNameEncoding)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
ArgumentNullException,
InvalidOperationException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
CultureNotFoundException,
ObjectDisposedException,
ArrayTypeMismatchException,
IOException,
InvalidDataException,
NullReferenceException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionNullReferenceExceptionpublic static void CreateFromDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName)
throws java.lang.Throwable,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentException,
NotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException,
SerializationException,
ObjectDisposedException,
ArrayTypeMismatchException,
IOException,
InvalidDataException,
NullReferenceException
java.lang.ThrowableArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionArgumentExceptionNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionCultureNotFoundExceptionSerializationExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionNullReferenceExceptionpublic static void CreateFromDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CompressionLevel compressionLevel,
boolean includeBaseDirectory)
throws java.lang.Throwable,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentException,
NotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException,
SerializationException,
ObjectDisposedException,
ArrayTypeMismatchException,
IOException,
InvalidDataException,
NullReferenceException
java.lang.ThrowableArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionArgumentExceptionNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionCultureNotFoundExceptionSerializationExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionNullReferenceExceptionpublic static void CreateFromDirectory(java.lang.String sourceDirectoryName,
java.lang.String destinationArchiveFileName,
CompressionLevel compressionLevel,
boolean includeBaseDirectory,
Encoding entryNameEncoding)
throws java.lang.Throwable,
ArgumentNullException,
IndexOutOfRangeException,
PlatformNotSupportedException,
ArgumentException,
NotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
CultureNotFoundException,
SerializationException,
ObjectDisposedException,
ArrayTypeMismatchException,
IOException,
InvalidDataException,
NullReferenceException
java.lang.ThrowableArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionArgumentExceptionNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionCultureNotFoundExceptionSerializationExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionNullReferenceExceptionpublic static Task CreateFromDirectoryAsync(java.lang.String sourceDirectoryName, Stream destination, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task CreateFromDirectoryAsync(java.lang.String sourceDirectoryName, Stream destination, CompressionLevel compressionLevel, boolean includeBaseDirectory, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task CreateFromDirectoryAsync(java.lang.String sourceDirectoryName, Stream destination, CompressionLevel compressionLevel, boolean includeBaseDirectory, Encoding entryNameEncoding, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task CreateFromDirectoryAsync(java.lang.String sourceDirectoryName, java.lang.String destinationArchiveFileName, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task CreateFromDirectoryAsync(java.lang.String sourceDirectoryName, java.lang.String destinationArchiveFileName, CompressionLevel compressionLevel, boolean includeBaseDirectory, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task CreateFromDirectoryAsync(java.lang.String sourceDirectoryName, java.lang.String destinationArchiveFileName, CompressionLevel compressionLevel, boolean includeBaseDirectory, Encoding entryNameEncoding, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static void ExtractToDirectory(Stream source, java.lang.String destinationDirectoryName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidDataException, UnreachableException, SerializationException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionUnreachableExceptionSerializationExceptionpublic static void ExtractToDirectory(Stream source, java.lang.String destinationDirectoryName, boolean overwriteFiles) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidDataException, UnreachableException, SerializationException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionUnreachableExceptionSerializationExceptionpublic static void ExtractToDirectory(Stream source, java.lang.String destinationDirectoryName, Encoding entryNameEncoding) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidDataException, UnreachableException, SerializationException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionObjectDisposedExceptionArrayTypeMismatchExceptionIOExceptionInvalidDataExceptionUnreachableExceptionSerializationExceptionpublic static void ExtractToDirectory(Stream source, java.lang.String destinationDirectoryName, Encoding entryNameEncoding, boolean overwriteFiles) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, IOException, InvalidDataException, OutOfMemoryException, UnreachableException, SerializationException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionIOExceptionInvalidDataExceptionOutOfMemoryExceptionUnreachableExceptionSerializationExceptionpublic static void ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
SerializationException,
ObjectDisposedException,
ArrayTypeMismatchException,
PlatformNotSupportedException,
IOException,
InvalidDataException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionSerializationExceptionObjectDisposedExceptionArrayTypeMismatchExceptionPlatformNotSupportedExceptionIOExceptionInvalidDataExceptionUnreachableExceptionpublic static void ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
boolean overwriteFiles)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
SerializationException,
ObjectDisposedException,
ArrayTypeMismatchException,
PlatformNotSupportedException,
IOException,
InvalidDataException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionSerializationExceptionObjectDisposedExceptionArrayTypeMismatchExceptionPlatformNotSupportedExceptionIOExceptionInvalidDataExceptionUnreachableExceptionpublic static void ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
SerializationException,
ObjectDisposedException,
ArrayTypeMismatchException,
PlatformNotSupportedException,
IOException,
InvalidDataException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionSerializationExceptionObjectDisposedExceptionArrayTypeMismatchExceptionPlatformNotSupportedExceptionIOExceptionInvalidDataExceptionUnreachableExceptionpublic static void ExtractToDirectory(java.lang.String sourceArchiveFileName,
java.lang.String destinationDirectoryName,
Encoding entryNameEncoding,
boolean overwriteFiles)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
SerializationException,
IndexOutOfRangeException,
IOException,
InvalidDataException,
UnreachableException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionSerializationExceptionIndexOutOfRangeExceptionIOExceptionInvalidDataExceptionUnreachableExceptionpublic static Task ExtractToDirectoryAsync(Stream source, java.lang.String destinationDirectoryName, boolean overwriteFiles, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task ExtractToDirectoryAsync(Stream source, java.lang.String destinationDirectoryName, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task ExtractToDirectoryAsync(Stream source, java.lang.String destinationDirectoryName, Encoding entryNameEncoding, boolean overwriteFiles, CancellationToken cancellationToken) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException
public static Task ExtractToDirectoryAsync(Stream source, java.lang.String destinationDirectoryName, Encoding entryNameEncoding, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName, java.lang.String destinationDirectoryName, boolean overwriteFiles, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName, java.lang.String destinationDirectoryName, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic static Task ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName, java.lang.String destinationDirectoryName, Encoding entryNameEncoding, boolean overwriteFiles, CancellationToken cancellationToken) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException
public static Task ExtractToDirectoryAsync(java.lang.String sourceArchiveFileName, java.lang.String destinationDirectoryName, Encoding entryNameEncoding, CancellationToken cancellationToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionpublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic static ZipArchive Open(java.lang.String archiveFileName, ZipArchiveMode mode) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, SerializationException, IndexOutOfRangeException, IOException, InvalidDataException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionSerializationExceptionIndexOutOfRangeExceptionIOExceptionInvalidDataExceptionpublic static ZipArchive Open(java.lang.String archiveFileName, ZipArchiveMode mode, Encoding entryNameEncoding) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, SerializationException, IOException, InvalidDataException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionSerializationExceptionIOExceptionInvalidDataExceptionFormatExceptionpublic static ZipArchive OpenRead(java.lang.String archiveFileName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, SerializationException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, PlatformNotSupportedException, IOException, InvalidDataException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObject