// // System.Runtime.InteropServices._ConstructorInfo interface // // Author: // Kazuki Oikawa (kazuki@panicode.com) // #if NET_1_1 using System; using System.Globalization; using System.Reflection; namespace System.Runtime.InteropServices { [CLSCompliant (false)] [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)] [Guid ("E9A19478-9646-3679-9B10-8411AE1FD57D")] [TypeLibImportClass (typeof (ConstructorInfo))] public interface _ConstructorInfo { bool Equals (object obj); object[] GetCustomAttributes (bool inherit); object[] GetCustomAttributes (Type attributeType, bool inherit); int GetHashCode (); MethodImplAttributes GetMethodImplementationFlags (); ParameterInfo[] GetParameters (); void GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId); void GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo); void GetTypeInfoCount (out uint pcTInfo); void Invoke (uint dispIdMember, [In] ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr); Type GetType (); object Invoke_5 (object[] parameters); object Invoke_3 (object obj, object[] parameters); object Invoke_4 (BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture); object Invoke_2 (object obj, BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture); bool IsDefined (Type attributeType, bool inherit); string ToString (); MethodAttributes Attributes {get;} CallingConventions CallingConvention {get;} Type DeclaringType {get;} bool IsAbstract {get;} bool IsAssembly {get;} bool IsConstructor {get;} bool IsFamily {get;} bool IsFamilyAndAssembly {get;} bool IsFamilyOrAssembly {get;} bool IsFinal {get;} bool IsHideBySig {get;} bool IsPrivate {get;} bool IsPublic {get;} bool IsSpecialName {get;} bool IsStatic {get;} bool IsVirtual {get;} MemberTypes MemberType {get;} RuntimeMethodHandle MethodHandle {get;} string Name {get;} Type ReflectedType {get;} } } #endif