Package system.reflection.emit
Class AssemblyBuilder
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.reflection.Assembly
-
- system.reflection.emit.AssemblyBuilder
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class AssemblyBuilder extends Assembly
The base .NET class managing System.Reflection.Emit.AssemblyBuilder, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Reflection.Emit.AssemblyBuilder
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.Reflection.Emit.AssemblyBuilderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description AssemblyBuilder()
AssemblyBuilder(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
AddResourceFile(java.lang.String name, java.lang.String fileName)
void
AddResourceFile(java.lang.String name, java.lang.String fileName, ResourceAttributes attribute)
static AssemblyBuilder
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoAssemblyBuilder
, a cast assert is made to check if types are compatible.static AssemblyBuilder
DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access)
ModuleBuilder
DefineDynamicModule(java.lang.String name)
ModuleBuilder
DefineDynamicModule(java.lang.String name, boolean emitSymbolInfo)
ModuleBuilder
DefineDynamicModule(java.lang.String name, java.lang.String fileName)
ModuleBuilder
DefineDynamicModule(java.lang.String name, java.lang.String fileName, boolean emitSymbolInfo)
IResourceWriter
DefineResource(java.lang.String name, java.lang.String description, java.lang.String fileName)
IResourceWriter
DefineResource(java.lang.String name, java.lang.String description, java.lang.String fileName, ResourceAttributes attribute)
void
DefineUnmanagedResource(byte[] resource)
void
DefineUnmanagedResource(java.lang.String resourceFileName)
void
DefineUnmanagedResource(JCORefOut dupParam0)
void
DefineVersionInfoResource()
void
DefineVersionInfoResource(java.lang.String product, java.lang.String productVersion, java.lang.String company, java.lang.String copyright, java.lang.String trademark)
NetObject[]
GetCustomAttributes(boolean inherit)
NetObject[]
GetCustomAttributes(NetType attributeType, boolean inherit)
ModuleBuilder
GetDynamicModule(java.lang.String name)
NetType[]
GetExportedTypes()
FileStream
GetFile(java.lang.String name)
FileStream[]
GetFiles(boolean getResourceModules)
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 TypeModule[]
GetLoadedModules(boolean getResourceModules)
ManifestResourceInfo
GetManifestResourceInfo(java.lang.String resourceName)
java.lang.String[]
GetManifestResourceNames()
Stream
GetManifestResourceStream(java.lang.String name)
Stream
GetManifestResourceStream(NetType type, java.lang.String name)
Module
GetModule(java.lang.String name)
Module[]
GetModules(boolean getResourceModules)
AssemblyName
GetName(boolean copiedName)
AssemblyName[]
GetReferencedAssemblies()
Assembly
GetSatelliteAssembly(CultureInfo culture)
Assembly
GetSatelliteAssembly(CultureInfo culture, Version version)
NetType
GetType(java.lang.String name, boolean throwOnError, boolean ignoreCase)
boolean
IsDefined(NetType attributeType, boolean inherit)
void
Save(java.lang.String assemblyFileName)
void
Save(java.lang.String assemblyFileName, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine)
void
SetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute)
void
SetCustomAttribute(ConstructorInfo dupParam0, JCORefOut dupParam1)
void
SetCustomAttribute(CustomAttributeBuilder customBuilder)
void
SetEntryPoint(MethodInfo entryMethod)
void
SetEntryPoint(MethodInfo entryMethod, PEFileKinds fileKind)
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.reflection.Assembly
addModuleResolve, CreateInstance, CreateInstance, CreateInstance, CreateQualifiedName, GetAssembly, GetCallingAssembly, getCodeBase, GetEntryAssembly, getEntryPoint, getEscapedCodeBase, getEvidence, GetExecutingAssembly, GetFiles, getFullName, getGlobalAssemblyCache, getHostContext, getImageRuntimeVersion, getIsDynamic, getIsFullyTrusted, GetLoadedModules, getLocation, getManifestModule, GetModules, GetName, GetObjectData, getPermissionSet, getReflectionOnly, getSecurityRuleSet, GetType, GetType, GetTypes, Load, Load, Load, Load, Load, Load, Load, Load, Load, Load, Load, Load, LoadFile, LoadFile, LoadFrom, LoadFrom, LoadFrom, LoadFrom, LoadFrom, LoadFrom, LoadModule, LoadModule, LoadModule, LoadModule, LoadWithPartialName, LoadWithPartialName, ReflectionOnlyLoad, ReflectionOnlyLoad, ReflectionOnlyLoad, ReflectionOnlyLoadFrom, removeModuleResolve, UnsafeLoadFrom
-
-
-
-
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.Reflection.Emit.AssemblyBuilder- See Also:
- Constant Field Values
-
-
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 classAssembly
- 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 classAssembly
- 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 classAssembly
- 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 classAssembly
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classAssembly
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classAssembly
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static AssemblyBuilder cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoAssemblyBuilder
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
AssemblyBuilder
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
IsDefined
public boolean IsDefined(NetType attributeType, boolean inherit) throws java.lang.Throwable, NotImplementedException
- Overrides:
IsDefined
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetFile
public FileStream GetFile(java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetFile
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetFiles
public FileStream[] GetFiles(boolean getResourceModules) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetFiles
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetManifestResourceStream
public Stream GetManifestResourceStream(java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceStream
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetManifestResourceStream
public Stream GetManifestResourceStream(NetType type, java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceStream
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetCustomAttributes
public NetObject[] GetCustomAttributes(boolean inherit) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetCustomAttributes
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetCustomAttributes
public NetObject[] GetCustomAttributes(NetType attributeType, boolean inherit) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetCustomAttributes
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetSatelliteAssembly
public Assembly GetSatelliteAssembly(CultureInfo culture) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, NotImplementedException, ArgumentException, CultureNotFoundException, NotSupportedException, FormatException, FileNotFoundException
- Overrides:
GetSatelliteAssembly
in classAssembly
- Throws:
java.lang.Throwable
ArgumentNullException
InvalidOperationException
IndexOutOfRangeException
ArgumentOutOfRangeException
NotImplementedException
ArgumentException
CultureNotFoundException
NotSupportedException
FormatException
FileNotFoundException
-
GetSatelliteAssembly
public Assembly GetSatelliteAssembly(CultureInfo culture, Version version) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, NotImplementedException, ArgumentException, CultureNotFoundException, NotSupportedException, FormatException, FileNotFoundException
- Overrides:
GetSatelliteAssembly
in classAssembly
- Throws:
java.lang.Throwable
ArgumentNullException
InvalidOperationException
IndexOutOfRangeException
ArgumentOutOfRangeException
NotImplementedException
ArgumentException
CultureNotFoundException
NotSupportedException
FormatException
FileNotFoundException
-
GetName
public AssemblyName GetName(boolean copiedName) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetName
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetReferencedAssemblies
public AssemblyName[] GetReferencedAssemblies() throws java.lang.Throwable, NotImplementedException
- Overrides:
GetReferencedAssemblies
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
DefineDynamicAssembly
public static AssemblyBuilder DefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access) throws java.lang.Throwable, InvalidOperationException, NotSupportedException, ArgumentException, ArgumentNullException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotImplementedException
- Throws:
java.lang.Throwable
InvalidOperationException
NotSupportedException
ArgumentException
ArgumentNullException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
FormatException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
NotImplementedException
-
DefineDynamicModule
public ModuleBuilder DefineDynamicModule(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException, InvalidOperationException, FormatException, NotSupportedException, TypeLoadException, SecurityException, MissingMethodException, TargetInvocationException
-
DefineDynamicModule
public ModuleBuilder DefineDynamicModule(java.lang.String name, boolean emitSymbolInfo) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException, InvalidOperationException, FormatException, NotSupportedException, TypeLoadException, SecurityException, MissingMethodException, TargetInvocationException
-
DefineDynamicModule
public ModuleBuilder DefineDynamicModule(java.lang.String name, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, InvalidOperationException, NullReferenceException, IndexOutOfRangeException, CultureNotFoundException, TypeLoadException, SecurityException
-
DefineDynamicModule
public ModuleBuilder DefineDynamicModule(java.lang.String name, java.lang.String fileName, boolean emitSymbolInfo) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, InvalidOperationException, NullReferenceException, IndexOutOfRangeException, CultureNotFoundException, TypeLoadException, SecurityException
-
GetDynamicModule
public ModuleBuilder GetDynamicModule(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NullReferenceException
-
GetManifestResourceInfo
public ManifestResourceInfo GetManifestResourceInfo(java.lang.String resourceName) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceInfo
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetModule
public Module GetModule(java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetModule
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetLoadedModules
public Module[] GetLoadedModules(boolean getResourceModules) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetLoadedModules
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetModules
public Module[] GetModules(boolean getResourceModules) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetModules
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
DefineResource
public IResourceWriter DefineResource(java.lang.String name, java.lang.String description, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NullReferenceException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
-
DefineResource
public IResourceWriter DefineResource(java.lang.String name, java.lang.String description, java.lang.String fileName, ResourceAttributes attribute) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NullReferenceException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
-
GetManifestResourceNames
public java.lang.String[] GetManifestResourceNames() throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceNames
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetType
public NetType GetType(java.lang.String name, boolean throwOnError, boolean ignoreCase) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetType
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
GetExportedTypes
public NetType[] GetExportedTypes() throws java.lang.Throwable, NotImplementedException
- Overrides:
GetExportedTypes
in classAssembly
- Throws:
java.lang.Throwable
NotImplementedException
-
AddResourceFile
public void AddResourceFile(java.lang.String name, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NullReferenceException
IndexOutOfRangeException
CultureNotFoundException
InvalidOperationException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
AddResourceFile
public void AddResourceFile(java.lang.String name, java.lang.String fileName, ResourceAttributes attribute) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NullReferenceException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NullReferenceException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
-
DefineUnmanagedResource
public void DefineUnmanagedResource(byte[] resource) throws java.lang.Throwable, ArgumentNullException, ArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
-
DefineUnmanagedResource
public void DefineUnmanagedResource(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentNullException, ArgumentException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
-
DefineUnmanagedResource
public void DefineUnmanagedResource(java.lang.String resourceFileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
ArgumentOutOfRangeException
IndexOutOfRangeException
InvalidOperationException
NotSupportedException
-
DefineVersionInfoResource
public void DefineVersionInfoResource() throws java.lang.Throwable, ArgumentException
- Throws:
java.lang.Throwable
ArgumentException
-
DefineVersionInfoResource
public void DefineVersionInfoResource(java.lang.String product, java.lang.String productVersion, java.lang.String company, java.lang.String copyright, java.lang.String trademark) throws java.lang.Throwable, ArgumentException
- Throws:
java.lang.Throwable
ArgumentException
-
Save
public void Save(java.lang.String assemblyFileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, FormatException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, NotImplementedException, SecurityException, RankException, InvalidCastException, ObjectDisposedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
FormatException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
NotImplementedException
SecurityException
RankException
InvalidCastException
ObjectDisposedException
-
Save
public void Save(java.lang.String assemblyFileName, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, OutOfMemoryException, FormatException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, NotImplementedException, SecurityException, RankException, InvalidCastException, ObjectDisposedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
InvalidOperationException
MissingMethodException
TargetInvocationException
CultureNotFoundException
OutOfMemoryException
FormatException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
NotImplementedException
SecurityException
RankException
InvalidCastException
ObjectDisposedException
-
SetCustomAttribute
public void SetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, MissingMethodException, FormatException
-
SetCustomAttribute
public void SetCustomAttribute(ConstructorInfo dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, MissingMethodException, FormatException
-
SetCustomAttribute
public void SetCustomAttribute(CustomAttributeBuilder customBuilder) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException
-
SetEntryPoint
public void SetEntryPoint(MethodInfo entryMethod) throws java.lang.Throwable, ArgumentException, ArgumentNullException, NotImplementedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException
-
SetEntryPoint
public void SetEntryPoint(MethodInfo entryMethod, PEFileKinds fileKind) throws java.lang.Throwable, ArgumentException, ArgumentNullException, NotImplementedException, InvalidOperationException, ArgumentOutOfRangeException, NotSupportedException, MissingMethodException, FormatException
-
-