All Downloads are FREE. Search and download functionalities are using the official Maven repository.

system.reflection.MethodBase Maven / Gradle / Ivy

/*
 *  MIT License
 *
 *  Copyright (c) 2022 MASES s.r.l.
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy
 *  of this software and associated documentation files (the "Software"), to deal
 *  in the Software without restriction, including without limitation the rights
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 *  copies of the Software, and to permit persons to whom the Software is
 *  furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in all
 *  copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 *  SOFTWARE.
 */

/**************************************************************************************
 * 
 *      This code was generated from a template using JCOReflector
 * 
 *      Manual changes to this file may cause unexpected behavior in your application.
 *      Manual changes to this file will be overwritten if the code is regenerated.
 * 
 *************************************************************************************/

package system.reflection;

import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;

// Import section
import system.reflection.MemberInfo;
import system.reflection.BindingFlags;
import system.reflection.Binder;
import system.globalization.CultureInfo;
import system.reflection.MethodBase;
import system.RuntimeMethodHandle;
import system.RuntimeTypeHandle;
import system.reflection.MethodBody;
import system.reflection.MethodImplAttributes;
import system.reflection.ParameterInfo;
import system.reflection.CallingConventions;
import system.reflection.MethodAttributes;


/**
 * The base .NET class managing System.Reflection.MethodBase, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e.
 * 

* * See: https://docs.microsoft.com/en-us/dotnet/api/System.Reflection.MethodBase */ public class MethodBase extends MemberInfo { /** * Fully assembly qualified name: System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e */ public static final String assemblyFullName = "System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e"; /** * Assembly name: System.Private.CoreLib */ public static final String assemblyShortName = "System.Private.CoreLib"; /** * Qualified class name: System.Reflection.MethodBase */ public static final String className = "System.Reflection.MethodBase"; static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName); /** * The type managed from JCOBridge. See {@link JCType} */ public static JCType classType = createType(); static JCEnum enumInstance = null; JCObject classInstance = null; static JCType createType() { try { String classToCreate = className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); if (JCOReflector.getDebug()) JCOReflector.writeLog("Creating %s", classToCreate); JCType typeCreated = bridge.GetType(classToCreate); if (JCOReflector.getDebug()) JCOReflector.writeLog("Created: %s", (typeCreated != null) ? typeCreated.toString() : "Returned null value"); return typeCreated; } catch (JCException e) { JCOReflector.writeLog(e); return null; } } void addReference(String ref) throws Throwable { try { bridge.AddReference(ref); } catch (JCNativeException jcne) { throw translateException(jcne); } } /** * Internal constructor. Use with caution */ public MethodBase(java.lang.Object instance) throws Throwable { super(instance); if (instance instanceof JCObject) { classInstance = (JCObject) instance; } else throw new Exception("Cannot manage object, it is not a JCObject"); } public String getJCOAssemblyName() { return assemblyFullName; } public String getJCOClassName() { return className; } public String getJCOObjectName() { return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName); } public java.lang.Object getJCOInstance() { return classInstance; } public void setJCOInstance(JCObject instance) { classInstance = instance; super.setJCOInstance(classInstance); } public JCType getJCOType() { return classType; } /** * Try to cast the {@link IJCOBridgeReflected} instance into {@link MethodBase}, a cast assert is made to check if types are compatible. * @param from {@link IJCOBridgeReflected} instance to be casted * @return {@link MethodBase} instance * @throws java.lang.Throwable in case of error during cast operation */ public static MethodBase cast(IJCOBridgeReflected from) throws Throwable { NetType.AssertCast(classType, from); return new MethodBase(from.getJCOInstance()); } // Constructors section public MethodBase() throws Throwable { } // Methods section public NetObject Invoke(NetObject obj, NetObject[] parameters) throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject objInvoke = (JCObject)classInstance.Invoke("Invoke", obj == null ? null : obj.getJCOInstance(), toObjectFromArray(parameters)); return new NetObject(objInvoke); } catch (JCNativeException jcne) { throw translateException(jcne); } } public NetObject Invoke(NetObject obj, BindingFlags invokeAttr, Binder binder, NetObject[] parameters, CultureInfo culture) throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject objInvoke = (JCObject)classInstance.Invoke("Invoke", obj == null ? null : obj.getJCOInstance(), invokeAttr == null ? null : invokeAttr.getJCOInstance(), binder == null ? null : binder.getJCOInstance(), toObjectFromArray(parameters), culture == null ? null : culture.getJCOInstance()); return new NetObject(objInvoke); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static MethodBase GetCurrentMethod() throws Throwable, system.NotSupportedException, system.ArgumentNullException, system.InvalidOperationException, system.ArgumentException, system.ArgumentOutOfRangeException, system.PlatformNotSupportedException, system.FormatException, system.NotImplementedException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject objGetCurrentMethod = (JCObject)classType.Invoke("GetCurrentMethod"); return new MethodBase(objGetCurrentMethod); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle, RuntimeTypeHandle declaringType) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException, system.FormatException, system.NotImplementedException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject objGetMethodFromHandle = (JCObject)classType.Invoke("GetMethodFromHandle", handle == null ? null : handle.getJCOInstance(), declaringType == null ? null : declaringType.getJCOInstance()); return new MethodBase(objGetMethodFromHandle); } catch (JCNativeException jcne) { throw translateException(jcne); } } public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException, system.FormatException, system.NotImplementedException { if (classType == null) throw new UnsupportedOperationException("classType is null."); try { JCObject objGetMethodFromHandle = (JCObject)classType.Invoke("GetMethodFromHandle", handle == null ? null : handle.getJCOInstance()); return new MethodBase(objGetMethodFromHandle); } catch (JCNativeException jcne) { throw translateException(jcne); } } public MethodBody GetMethodBody() throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.IndexOutOfRangeException, system.NotSupportedException, system.ObjectDisposedException, system.RankException, system.ArrayTypeMismatchException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject objGetMethodBody = (JCObject)classInstance.Invoke("GetMethodBody"); return new MethodBody(objGetMethodBody); } catch (JCNativeException jcne) { throw translateException(jcne); } } public MethodImplAttributes GetMethodImplementationFlags() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject objGetMethodImplementationFlags = (JCObject)classInstance.Invoke("GetMethodImplementationFlags"); return new MethodImplAttributes(objGetMethodImplementationFlags); } catch (JCNativeException jcne) { throw translateException(jcne); } } public ParameterInfo[] GetParameters() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { ArrayList resultingArrayList = new ArrayList(); JCObject resultingObjects = (JCObject)classInstance.Invoke("GetParameters"); for (java.lang.Object resultingObject : resultingObjects) { resultingArrayList.add(new ParameterInfo(resultingObject)); } ParameterInfo[] resultingArray = new ParameterInfo[resultingArrayList.size()]; resultingArray = resultingArrayList.toArray(resultingArray); return resultingArray; } catch (JCNativeException jcne) { throw translateException(jcne); } } public NetType[] GetGenericArguments() throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { ArrayList resultingArrayList = new ArrayList(); JCObject resultingObjects = (JCObject)classInstance.Invoke("GetGenericArguments"); for (java.lang.Object resultingObject : resultingObjects) { resultingArrayList.add(new NetType(resultingObject)); } NetType[] resultingArray = new NetType[resultingArrayList.size()]; resultingArray = resultingArrayList.toArray(resultingArray); return resultingArray; } catch (JCNativeException jcne) { throw translateException(jcne); } } // Properties section public boolean getContainsGenericParameters() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("ContainsGenericParameters"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsAbstract() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsAbstract"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsAssembly() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsAssembly"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsConstructedGenericMethod() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsConstructedGenericMethod"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsConstructor() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsConstructor"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsFamily() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsFamily"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsFamilyAndAssembly() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsFamilyAndAssembly"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsFamilyOrAssembly() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsFamilyOrAssembly"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsFinal() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsFinal"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsGenericMethod() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsGenericMethod"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsGenericMethodDefinition() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsGenericMethodDefinition"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsHideBySig() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsHideBySig"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsPrivate() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsPrivate"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsPublic() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsPublic"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsSecurityCritical() throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.IndexOutOfRangeException, system.NotSupportedException, system.ArgumentNullException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.PlatformNotSupportedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsSecurityCritical"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsSecuritySafeCritical() throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.IndexOutOfRangeException, system.NotSupportedException, system.ArgumentNullException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.PlatformNotSupportedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsSecuritySafeCritical"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsSecurityTransparent() throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.IndexOutOfRangeException, system.NotSupportedException, system.ArgumentNullException, system.ObjectDisposedException, system.InvalidOperationException, system.RankException, system.ArrayTypeMismatchException, system.PlatformNotSupportedException { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsSecurityTransparent"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsSpecialName() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsSpecialName"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsStatic() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsStatic"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public boolean getIsVirtual() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { return (boolean)classInstance.Get("IsVirtual"); } catch (JCNativeException jcne) { throw translateException(jcne); } } public CallingConventions getCallingConvention() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject val = (JCObject)classInstance.Get("CallingConvention"); return new CallingConventions(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public MethodAttributes getAttributes() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject val = (JCObject)classInstance.Get("Attributes"); return new MethodAttributes(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public MethodImplAttributes getMethodImplementationFlags() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject val = (JCObject)classInstance.Get("MethodImplementationFlags"); return new MethodImplAttributes(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } public RuntimeMethodHandle getMethodHandle() throws Throwable { if (classInstance == null) throw new UnsupportedOperationException("classInstance is null."); try { JCObject val = (JCObject)classInstance.Get("MethodHandle"); return new RuntimeMethodHandle(val); } catch (JCNativeException jcne) { throw translateException(jcne); } } // Instance Events section }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy