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.StringassemblyFullNameFully assembly qualified name: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: mscorlibstatic java.lang.StringclassNameQualified class name: System.Reflection.Emit.AssemblyBuilderstatic JCTypeclassTypeThe 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 voidAddResourceFile(java.lang.String name, java.lang.String fileName)voidAddResourceFile(java.lang.String name, java.lang.String fileName, ResourceAttributes attribute)static AssemblyBuildercast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoAssemblyBuilder, a cast assert is made to check if types are compatible.static AssemblyBuilderDefineDynamicAssembly(AssemblyName name, AssemblyBuilderAccess access)ModuleBuilderDefineDynamicModule(java.lang.String name)ModuleBuilderDefineDynamicModule(java.lang.String name, boolean emitSymbolInfo)ModuleBuilderDefineDynamicModule(java.lang.String name, java.lang.String fileName)ModuleBuilderDefineDynamicModule(java.lang.String name, java.lang.String fileName, boolean emitSymbolInfo)IResourceWriterDefineResource(java.lang.String name, java.lang.String description, java.lang.String fileName)IResourceWriterDefineResource(java.lang.String name, java.lang.String description, java.lang.String fileName, ResourceAttributes attribute)voidDefineUnmanagedResource(byte[] resource)voidDefineUnmanagedResource(java.lang.String resourceFileName)voidDefineUnmanagedResource(JCORefOut dupParam0)voidDefineVersionInfoResource()voidDefineVersionInfoResource(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)ModuleBuilderGetDynamicModule(java.lang.String name)NetType[]GetExportedTypes()FileStreamGetFile(java.lang.String name)FileStream[]GetFiles(boolean getResourceModules)java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeModule[]GetLoadedModules(boolean getResourceModules)ManifestResourceInfoGetManifestResourceInfo(java.lang.String resourceName)java.lang.String[]GetManifestResourceNames()StreamGetManifestResourceStream(java.lang.String name)StreamGetManifestResourceStream(NetType type, java.lang.String name)ModuleGetModule(java.lang.String name)Module[]GetModules(boolean getResourceModules)AssemblyNameGetName(boolean copiedName)AssemblyName[]GetReferencedAssemblies()AssemblyGetSatelliteAssembly(CultureInfo culture)AssemblyGetSatelliteAssembly(CultureInfo culture, Version version)NetTypeGetType(java.lang.String name, boolean throwOnError, boolean ignoreCase)booleanIsDefined(NetType attributeType, boolean inherit)voidSave(java.lang.String assemblyFileName)voidSave(java.lang.String assemblyFileName, PortableExecutableKinds portableExecutableKind, ImageFileMachine imageFileMachine)voidSetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute)voidSetCustomAttribute(ConstructorInfo dupParam0, JCORefOut dupParam1)voidSetCustomAttribute(CustomAttributeBuilder customBuilder)voidSetEntryPoint(MethodInfo entryMethod)voidSetEntryPoint(MethodInfo entryMethod, PEFileKinds fileKind)voidsetJCOInstance(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:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classAssembly- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classAssembly- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classAssembly- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classAssembly- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classAssembly
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classAssembly- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static AssemblyBuilder cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoAssemblyBuilder, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
AssemblyBuilderinstance- 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:
IsDefinedin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetFile
public FileStream GetFile(java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetFilein classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetFiles
public FileStream[] GetFiles(boolean getResourceModules) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetFilesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetManifestResourceStream
public Stream GetManifestResourceStream(java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceStreamin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetManifestResourceStream
public Stream GetManifestResourceStream(NetType type, java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceStreamin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetCustomAttributes
public NetObject[] GetCustomAttributes(boolean inherit) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetCustomAttributesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetCustomAttributes
public NetObject[] GetCustomAttributes(NetType attributeType, boolean inherit) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetCustomAttributesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetSatelliteAssembly
public Assembly GetSatelliteAssembly(CultureInfo culture) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, NotImplementedException, ArgumentException, CultureNotFoundException, NotSupportedException, FormatException, FileNotFoundException
- Overrides:
GetSatelliteAssemblyin classAssembly- Throws:
java.lang.ThrowableArgumentNullExceptionInvalidOperationExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionNotImplementedExceptionArgumentExceptionCultureNotFoundExceptionNotSupportedExceptionFormatExceptionFileNotFoundException
-
GetSatelliteAssembly
public Assembly GetSatelliteAssembly(CultureInfo culture, Version version) throws java.lang.Throwable, ArgumentNullException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, NotImplementedException, ArgumentException, CultureNotFoundException, NotSupportedException, FormatException, FileNotFoundException
- Overrides:
GetSatelliteAssemblyin classAssembly- Throws:
java.lang.ThrowableArgumentNullExceptionInvalidOperationExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionNotImplementedExceptionArgumentExceptionCultureNotFoundExceptionNotSupportedExceptionFormatExceptionFileNotFoundException
-
GetName
public AssemblyName GetName(boolean copiedName) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetNamein classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetReferencedAssemblies
public AssemblyName[] GetReferencedAssemblies() throws java.lang.Throwable, NotImplementedException
- Overrides:
GetReferencedAssembliesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
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.ThrowableInvalidOperationExceptionNotSupportedExceptionArgumentExceptionArgumentNullExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNullReferenceException
-
GetManifestResourceInfo
public ManifestResourceInfo GetManifestResourceInfo(java.lang.String resourceName) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetManifestResourceInfoin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetModule
public Module GetModule(java.lang.String name) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetModulein classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetLoadedModules
public Module[] GetLoadedModules(boolean getResourceModules) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetLoadedModulesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetModules
public Module[] GetModules(boolean getResourceModules) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetModulesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNullReferenceExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionInvalidOperationExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNullReferenceExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityException
-
GetManifestResourceNames
public java.lang.String[] GetManifestResourceNames() throws java.lang.Throwable, NotImplementedException- Overrides:
GetManifestResourceNamesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetType
public NetType GetType(java.lang.String name, boolean throwOnError, boolean ignoreCase) throws java.lang.Throwable, NotImplementedException
- Overrides:
GetTypein classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
GetExportedTypes
public NetType[] GetExportedTypes() throws java.lang.Throwable, NotImplementedException
- Overrides:
GetExportedTypesin classAssembly- Throws:
java.lang.ThrowableNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNullReferenceExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionInvalidOperationExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNullReferenceExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeException
-
DefineUnmanagedResource
public void DefineUnmanagedResource(byte[] resource) throws java.lang.Throwable, ArgumentNullException, ArgumentException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentException
-
DefineUnmanagedResource
public void DefineUnmanagedResource(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentNullException, ArgumentException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentException
-
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.ThrowableArgumentNullExceptionArgumentExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionInvalidOperationExceptionNotSupportedException
-
DefineVersionInfoResource
public void DefineVersionInfoResource() throws java.lang.Throwable, ArgumentException- Throws:
java.lang.ThrowableArgumentException
-
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.ThrowableArgumentException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionFormatExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionNotImplementedExceptionSecurityExceptionRankExceptionInvalidCastExceptionObjectDisposedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionFormatExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionNotImplementedExceptionSecurityExceptionRankExceptionInvalidCastExceptionObjectDisposedException
-
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
-
-