public class Assembly extends NetObject
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Reflection.Assembly
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.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
|
static java.lang.String |
assemblyShortName
Assembly name: System.Private.CoreLib
|
static java.lang.String |
className
Qualified class name: System.Reflection.Assembly
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
Assembly() |
Assembly(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addModuleResolve(ModuleResolveEventHandler handler) |
static Assembly |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into Assembly, a cast assert is made to check if types are compatible. |
NetObject |
CreateInstance(java.lang.String typeName) |
NetObject |
CreateInstance(java.lang.String typeName,
boolean ignoreCase) |
NetObject |
CreateInstance(java.lang.String typeName,
boolean ignoreCase,
BindingFlags bindingAttr,
Binder binder,
NetObject[] args,
CultureInfo culture,
NetObject[] activationAttributes) |
static java.lang.String |
CreateQualifiedName(java.lang.String assemblyName,
java.lang.String typeName) |
static Assembly |
GetAssembly(NetType type) |
static Assembly |
GetCallingAssembly() |
java.lang.String |
getCodeBase() |
NetObject[] |
GetCustomAttributes(boolean inherit) |
NetObject[] |
GetCustomAttributes(NetType attributeType,
boolean inherit) |
static Assembly |
GetEntryAssembly() |
MethodInfo |
getEntryPoint() |
java.lang.String |
getEscapedCodeBase() |
static Assembly |
GetExecutingAssembly() |
NetType[] |
GetExportedTypes() |
FileStream |
GetFile(java.lang.String name) |
FileStream[] |
GetFiles() |
FileStream[] |
GetFiles(boolean getResourceModules) |
NetType[] |
GetForwardedTypes() |
java.lang.String |
getFullName() |
boolean |
getGlobalAssemblyCache() |
long |
getHostContext() |
java.lang.String |
getImageRuntimeVersion() |
boolean |
getIsCollectible() |
boolean |
getIsDynamic() |
boolean |
getIsFullyTrusted() |
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
|
Module[] |
GetLoadedModules() |
Module[] |
GetLoadedModules(boolean getResourceModules) |
java.lang.String |
getLocation() |
Module |
getManifestModule() |
ManifestResourceInfo |
GetManifestResourceInfo(java.lang.String resourceName) |
java.lang.String[] |
GetManifestResourceNames() |
Stream |
GetManifestResourceStream(NetType type,
java.lang.String name) |
Stream |
GetManifestResourceStream(java.lang.String name) |
Module |
GetModule(java.lang.String name) |
Module[] |
GetModules() |
Module[] |
GetModules(boolean getResourceModules) |
AssemblyName |
GetName() |
AssemblyName |
GetName(boolean copiedName) |
void |
GetObjectData(SerializationInfo info,
StreamingContext context) |
AssemblyName[] |
GetReferencedAssemblies() |
boolean |
getReflectionOnly() |
Assembly |
GetSatelliteAssembly(CultureInfo culture) |
Assembly |
GetSatelliteAssembly(CultureInfo culture,
Version version) |
SecurityRuleSet |
getSecurityRuleSet() |
NetType |
GetType(java.lang.String name) |
NetType |
GetType(java.lang.String name,
boolean throwOnError) |
NetType |
GetType(java.lang.String name,
boolean throwOnError,
boolean ignoreCase) |
NetType[] |
GetTypes() |
boolean |
IsDefined(NetType attributeType,
boolean inherit) |
static Assembly |
Load(AssemblyName assemblyRef) |
static Assembly |
Load(byte[] rawAssembly) |
static Assembly |
Load(byte[] rawAssembly,
byte[] rawSymbolStore) |
static Assembly |
Load(JCORefOut dupParam0) |
static Assembly |
Load(JCORefOut dupParam0,
JCORefOut dupParam1) |
static Assembly |
Load(java.lang.String assemblyString) |
static Assembly |
LoadFile(java.lang.String path) |
static Assembly |
LoadFrom(java.lang.String assemblyFile) |
static Assembly |
LoadFrom(java.lang.String assemblyFile,
byte[] hashValue,
AssemblyHashAlgorithm hashAlgorithm) |
static Assembly |
LoadFrom(java.lang.String dupParam0,
JCORefOut dupParam1,
AssemblyHashAlgorithm dupParam2) |
Module |
LoadModule(java.lang.String moduleName,
byte[] rawModule) |
Module |
LoadModule(java.lang.String moduleName,
byte[] rawModule,
byte[] rawSymbolStore) |
Module |
LoadModule(java.lang.String dupParam0,
JCORefOut dupParam1) |
Module |
LoadModule(java.lang.String dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2) |
static Assembly |
LoadWithPartialName(java.lang.String partialName) |
static Assembly |
ReflectionOnlyLoad(byte[] rawAssembly) |
static Assembly |
ReflectionOnlyLoad(JCORefOut dupParam0) |
static Assembly |
ReflectionOnlyLoad(java.lang.String assemblyString) |
static Assembly |
ReflectionOnlyLoadFrom(java.lang.String assemblyFile) |
void |
removeModuleResolve(ModuleResolveEventHandler handler) |
static void |
SetEntryAssembly(Assembly assembly) |
void |
setJCOInstance(JCObject instance) |
static Assembly |
UnsafeLoadFrom(java.lang.String assemblyFile) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public Assembly()
throws java.lang.Throwable
java.lang.Throwablepublic Assembly(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic void addModuleResolve(ModuleResolveEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic static Assembly cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into Assembly, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedAssembly instancejava.lang.Throwable - in case of error during cast operationpublic NetObject CreateInstance(java.lang.String typeName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, NullReferenceException, MissingMethodException, TargetInvocationException, CultureNotFoundException
public NetObject CreateInstance(java.lang.String typeName, boolean ignoreCase) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, NullReferenceException, MissingMethodException, TargetInvocationException, CultureNotFoundException
public NetObject CreateInstance(java.lang.String typeName, boolean ignoreCase, BindingFlags bindingAttr, Binder binder, NetObject[] args, CultureInfo culture, NetObject[] activationAttributes) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, NullReferenceException, MissingMethodException, TargetInvocationException, IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionNullReferenceExceptionMissingMethodExceptionTargetInvocationExceptionIndexOutOfRangeExceptionpublic static java.lang.String CreateQualifiedName(java.lang.String assemblyName,
java.lang.String typeName)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
OutOfMemoryException
public static Assembly GetAssembly(NetType type) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public static Assembly GetCallingAssembly() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionpublic java.lang.String getCodeBase()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public NetObject[] GetCustomAttributes(boolean inherit) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public NetObject[] GetCustomAttributes(NetType attributeType, boolean inherit) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public static Assembly GetEntryAssembly() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionpublic MethodInfo getEntryPoint() throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public java.lang.String getEscapedCodeBase()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
IndexOutOfRangeException,
OverflowException,
UnreachableException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionIndexOutOfRangeExceptionOverflowExceptionUnreachableExceptionpublic static Assembly GetExecutingAssembly() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionpublic NetType[] GetExportedTypes() throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public FileStream GetFile(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public FileStream[] GetFiles() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public FileStream[] GetFiles(boolean getResourceModules) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public NetType[] GetForwardedTypes() throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public java.lang.String getFullName()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public boolean getGlobalAssemblyCache()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public long getHostContext()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public java.lang.String getImageRuntimeVersion()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public boolean getIsCollectible()
throws java.lang.Throwable
java.lang.Throwablepublic boolean getIsDynamic()
throws java.lang.Throwable
java.lang.Throwablepublic boolean getIsFullyTrusted()
throws java.lang.Throwable
java.lang.Throwablepublic 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 Module[] GetLoadedModules() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public Module[] GetLoadedModules(boolean getResourceModules) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public java.lang.String getLocation()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public Module getManifestModule() throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public ManifestResourceInfo GetManifestResourceInfo(java.lang.String resourceName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public java.lang.String[] GetManifestResourceNames()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public Stream GetManifestResourceStream(NetType type, java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public Stream GetManifestResourceStream(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public Module GetModule(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public Module[] GetModules() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public Module[] GetModules(boolean getResourceModules) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public AssemblyName GetName() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public AssemblyName GetName(boolean copiedName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public void GetObjectData(SerializationInfo info, StreamingContext context) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public AssemblyName[] GetReferencedAssemblies() throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public boolean getReflectionOnly()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public Assembly GetSatelliteAssembly(CultureInfo culture) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public Assembly GetSatelliteAssembly(CultureInfo culture, Version version) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public SecurityRuleSet getSecurityRuleSet() throws java.lang.Throwable
java.lang.Throwablepublic NetType GetType(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public NetType GetType(java.lang.String name, boolean throwOnError) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public NetType GetType(java.lang.String name, boolean throwOnError, boolean ignoreCase) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public NetType[] GetTypes() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public boolean IsDefined(NetType attributeType, boolean inherit) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public static Assembly Load(AssemblyName assemblyRef) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public static Assembly Load(byte[] rawAssembly) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, BadImageFormatException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, IndexOutOfRangeException, SerializationException, NullReferenceException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionBadImageFormatExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionSerializationExceptionNullReferenceExceptionpublic static Assembly Load(byte[] rawAssembly, byte[] rawSymbolStore) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, BadImageFormatException, OutOfMemoryException, CultureNotFoundException, IndexOutOfRangeException, SerializationException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionBadImageFormatExceptionOutOfMemoryExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionSerializationExceptionpublic static Assembly Load(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, BadImageFormatException, PlatformNotSupportedException, OutOfMemoryException, CultureNotFoundException, IndexOutOfRangeException, SerializationException, NullReferenceException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionBadImageFormatExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionSerializationExceptionNullReferenceExceptionpublic static Assembly Load(JCORefOut dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, BadImageFormatException, OutOfMemoryException, CultureNotFoundException, IndexOutOfRangeException, SerializationException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionBadImageFormatExceptionOutOfMemoryExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionSerializationExceptionpublic static Assembly Load(java.lang.String assemblyString) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, IndexOutOfRangeException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, ArrayTypeMismatchException, UnreachableException, FileLoadException, OutOfMemoryException, InvalidOperationException
java.lang.ThrowablePlatformNotSupportedExceptionArgumentNullExceptionArgumentExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionNotSupportedExceptionArrayTypeMismatchExceptionUnreachableExceptionFileLoadExceptionOutOfMemoryExceptionInvalidOperationExceptionpublic static Assembly LoadFile(java.lang.String path) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, NullReferenceException, ExternalException, CultureNotFoundException, MissingMethodException, TargetInvocationException, FileNotFoundException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionNullReferenceExceptionExternalExceptionCultureNotFoundExceptionMissingMethodExceptionTargetInvocationExceptionFileNotFoundExceptionpublic static Assembly LoadFrom(java.lang.String assemblyFile) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, OutOfMemoryException, NullReferenceException, ExternalException, CultureNotFoundException, UnreachableException, FileLoadException, MissingMethodException, TargetInvocationException, MulticastNotSupportedException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionNullReferenceExceptionExternalExceptionCultureNotFoundExceptionUnreachableExceptionFileLoadExceptionMissingMethodExceptionTargetInvocationExceptionMulticastNotSupportedExceptionpublic static Assembly LoadFrom(java.lang.String assemblyFile, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public static Assembly LoadFrom(java.lang.String dupParam0, JCORefOut dupParam1, AssemblyHashAlgorithm dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public Module LoadModule(java.lang.String moduleName, byte[] rawModule) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public Module LoadModule(java.lang.String moduleName, byte[] rawModule, byte[] rawSymbolStore) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public Module LoadModule(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public Module LoadModule(java.lang.String dupParam0, JCORefOut dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public static Assembly LoadWithPartialName(java.lang.String partialName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException, UnreachableException, FileLoadException, OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionUnreachableExceptionFileLoadExceptionOutOfMemoryExceptionpublic static Assembly ReflectionOnlyLoad(byte[] rawAssembly) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public static Assembly ReflectionOnlyLoad(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public static Assembly ReflectionOnlyLoad(java.lang.String assemblyString) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public static Assembly ReflectionOnlyLoadFrom(java.lang.String assemblyFile) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public void removeModuleResolve(ModuleResolveEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic static void SetEntryAssembly(Assembly assembly) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic static Assembly UnsafeLoadFrom(java.lang.String assemblyFile) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, CultureNotFoundException, FileLoadException, MulticastNotSupportedException