Package system
Class AppDomainSetup
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.AppDomainSetup
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class AppDomainSetup extends NetObject
The base .NET class managing System.AppDomainSetup, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.AppDomainSetup
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: mscorlibstatic java.lang.String
className
Qualified class name: System.AppDomainSetupstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description AppDomainSetup()
AppDomainSetup(java.lang.Object instance)
Internal constructor.AppDomainSetup(ActivationContext activationContext)
AppDomainSetup(ActivationArguments activationArguments)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AppDomainSetup
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoAppDomainSetup
, a cast assert is made to check if types are compatible.ActivationArguments
getActivationArguments()
AppDomainInitializer
getAppDomainInitializer()
java.lang.String[]
getAppDomainInitializerArguments()
java.lang.String
getAppDomainManagerAssembly()
java.lang.String
getAppDomainManagerType()
java.lang.String
getApplicationBase()
java.lang.String
getApplicationName()
ApplicationTrust
getApplicationTrust()
java.lang.String
getCachePath()
byte[]
GetConfigurationBytes()
java.lang.String
getConfigurationFile()
boolean
getDisallowApplicationBaseProbing()
boolean
getDisallowBindingRedirects()
boolean
getDisallowCodeDownload()
boolean
getDisallowPublisherPolicy()
java.lang.String
getDynamicBase()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typejava.lang.String
getLicenseFile()
LoaderOptimization
getLoaderOptimization()
java.lang.String[]
getPartialTrustVisibleAssemblies()
java.lang.String
getPrivateBinPath()
java.lang.String
getPrivateBinPathProbe()
boolean
getSandboxInterop()
java.lang.String
getShadowCopyDirectories()
java.lang.String
getShadowCopyFiles()
java.lang.String
getTargetFrameworkName()
void
setActivationArguments(ActivationArguments ActivationArguments)
void
setAppDomainInitializer(AppDomainInitializer AppDomainInitializer)
void
setAppDomainInitializerArguments(java.lang.String[] AppDomainInitializerArguments)
void
setAppDomainManagerAssembly(java.lang.String AppDomainManagerAssembly)
void
setAppDomainManagerType(java.lang.String AppDomainManagerType)
void
setApplicationBase(java.lang.String ApplicationBase)
void
setApplicationName(java.lang.String ApplicationName)
void
setApplicationTrust(ApplicationTrust ApplicationTrust)
void
setCachePath(java.lang.String CachePath)
void
SetConfigurationBytes(byte[] value)
void
SetConfigurationBytes(JCORefOut dupParam0)
void
setConfigurationFile(java.lang.String ConfigurationFile)
void
setDisallowApplicationBaseProbing(boolean DisallowApplicationBaseProbing)
void
setDisallowBindingRedirects(boolean DisallowBindingRedirects)
void
setDisallowCodeDownload(boolean DisallowCodeDownload)
void
setDisallowPublisherPolicy(boolean DisallowPublisherPolicy)
void
setDynamicBase(java.lang.String DynamicBase)
void
setJCOInstance(JCObject instance)
void
setLicenseFile(java.lang.String LicenseFile)
void
setLoaderOptimization(LoaderOptimization LoaderOptimization)
void
setPartialTrustVisibleAssemblies(java.lang.String[] PartialTrustVisibleAssemblies)
void
setPrivateBinPath(java.lang.String PrivateBinPath)
void
setPrivateBinPathProbe(java.lang.String PrivateBinPathProbe)
void
setSandboxInterop(boolean SandboxInterop)
void
setShadowCopyDirectories(java.lang.String ShadowCopyDirectories)
void
setShadowCopyFiles(java.lang.String ShadowCopyFiles)
void
setTargetFrameworkName(java.lang.String TargetFrameworkName)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: mscorlib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.AppDomainSetup- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AppDomainSetup
public AppDomainSetup(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
AppDomainSetup
public AppDomainSetup() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
AppDomainSetup
public AppDomainSetup(ActivationContext activationContext) throws java.lang.Throwable, InvalidOperationException, NotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, OutOfMemoryException, PathTooLongException, IndexOutOfRangeException, MemberAccessException
-
AppDomainSetup
public AppDomainSetup(ActivationArguments activationArguments) throws java.lang.Throwable, ArgumentNullException, ArgumentException, FormatException, ArgumentOutOfRangeException, OutOfMemoryException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NotSupportedException, IndexOutOfRangeException, MemberAccessException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
FormatException
ArgumentOutOfRangeException
OutOfMemoryException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
NotSupportedException
IndexOutOfRangeException
MemberAccessException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static AppDomainSetup cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoAppDomainSetup
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
AppDomainSetup
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetConfigurationBytes
public byte[] GetConfigurationBytes() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetConfigurationBytes
public void SetConfigurationBytes(byte[] value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetConfigurationBytes
public void SetConfigurationBytes(JCORefOut dupParam0) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDisallowApplicationBaseProbing
public boolean getDisallowApplicationBaseProbing() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDisallowApplicationBaseProbing
public void setDisallowApplicationBaseProbing(boolean DisallowApplicationBaseProbing) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDisallowBindingRedirects
public boolean getDisallowBindingRedirects() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDisallowBindingRedirects
public void setDisallowBindingRedirects(boolean DisallowBindingRedirects) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDisallowCodeDownload
public boolean getDisallowCodeDownload() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDisallowCodeDownload
public void setDisallowCodeDownload(boolean DisallowCodeDownload) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDisallowPublisherPolicy
public boolean getDisallowPublisherPolicy() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDisallowPublisherPolicy
public void setDisallowPublisherPolicy(boolean DisallowPublisherPolicy) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getSandboxInterop
public boolean getSandboxInterop() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSandboxInterop
public void setSandboxInterop(boolean SandboxInterop) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getAppDomainInitializer
public AppDomainInitializer getAppDomainInitializer() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAppDomainInitializer
public void setAppDomainInitializer(AppDomainInitializer AppDomainInitializer) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getLoaderOptimization
public LoaderOptimization getLoaderOptimization() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setLoaderOptimization
public void setLoaderOptimization(LoaderOptimization LoaderOptimization) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getActivationArguments
public ActivationArguments getActivationArguments() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setActivationArguments
public void setActivationArguments(ActivationArguments ActivationArguments) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getApplicationTrust
public ApplicationTrust getApplicationTrust() throws java.lang.Throwable, ArgumentNullException, ArgumentException, XmlSyntaxException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, NullReferenceException, InvalidCastException, RankException
-
setApplicationTrust
public void setApplicationTrust(ApplicationTrust ApplicationTrust) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, NullReferenceException, SecurityException, SerializationException, NotSupportedException
-
getAppDomainManagerAssembly
public java.lang.String getAppDomainManagerAssembly() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAppDomainManagerAssembly
public void setAppDomainManagerAssembly(java.lang.String AppDomainManagerAssembly) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getAppDomainManagerType
public java.lang.String getAppDomainManagerType() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAppDomainManagerType
public void setAppDomainManagerType(java.lang.String AppDomainManagerType) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getApplicationBase
public java.lang.String getApplicationBase() throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
CultureNotFoundException
OutOfMemoryException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
setApplicationBase
public void setApplicationBase(java.lang.String ApplicationBase) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, PathTooLongException, MemberAccessException, OutOfMemoryException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
PathTooLongException
MemberAccessException
OutOfMemoryException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
getApplicationName
public java.lang.String getApplicationName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setApplicationName
public void setApplicationName(java.lang.String ApplicationName) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCachePath
public java.lang.String getCachePath() throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
CultureNotFoundException
OutOfMemoryException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
setCachePath
public void setCachePath(java.lang.String CachePath) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, PathTooLongException, MemberAccessException, OutOfMemoryException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
PathTooLongException
MemberAccessException
OutOfMemoryException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
getConfigurationFile
public java.lang.String getConfigurationFile() throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
CultureNotFoundException
OutOfMemoryException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
setConfigurationFile
public void setConfigurationFile(java.lang.String ConfigurationFile) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDynamicBase
public java.lang.String getDynamicBase() throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
CultureNotFoundException
OutOfMemoryException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
setDynamicBase
public void setDynamicBase(java.lang.String DynamicBase) throws java.lang.Throwable, MemberAccessException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, PathTooLongException, OutOfMemoryException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
MemberAccessException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
PathTooLongException
OutOfMemoryException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
getLicenseFile
public java.lang.String getLicenseFile() throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
CultureNotFoundException
OutOfMemoryException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
setLicenseFile
public void setLicenseFile(java.lang.String LicenseFile) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getPrivateBinPath
public java.lang.String getPrivateBinPath() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, FormatException, CultureNotFoundException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
FormatException
CultureNotFoundException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidOperationException
-
setPrivateBinPath
public void setPrivateBinPath(java.lang.String PrivateBinPath) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getPrivateBinPathProbe
public java.lang.String getPrivateBinPathProbe() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setPrivateBinPathProbe
public void setPrivateBinPathProbe(java.lang.String PrivateBinPathProbe) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getShadowCopyDirectories
public java.lang.String getShadowCopyDirectories() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, FormatException, CultureNotFoundException, IndexOutOfRangeException, PathTooLongException, MemberAccessException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
FormatException
CultureNotFoundException
IndexOutOfRangeException
PathTooLongException
MemberAccessException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidOperationException
-
setShadowCopyDirectories
public void setShadowCopyDirectories(java.lang.String ShadowCopyDirectories) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getShadowCopyFiles
public java.lang.String getShadowCopyFiles() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setShadowCopyFiles
public void setShadowCopyFiles(java.lang.String ShadowCopyFiles) throws java.lang.Throwable, ArgumentException, ArgumentNullException, TypeLoadException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException
-
getTargetFrameworkName
public java.lang.String getTargetFrameworkName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTargetFrameworkName
public void setTargetFrameworkName(java.lang.String TargetFrameworkName) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getAppDomainInitializerArguments
public java.lang.String[] getAppDomainInitializerArguments() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAppDomainInitializerArguments
public void setAppDomainInitializerArguments(java.lang.String[] AppDomainInitializerArguments) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getPartialTrustVisibleAssemblies
public java.lang.String[] getPartialTrustVisibleAssemblies() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setPartialTrustVisibleAssemblies
public void setPartialTrustVisibleAssemblies(java.lang.String[] PartialTrustVisibleAssemblies) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
NotSupportedException
-
-