Classes | |
class | Assembly |
Reflection class describing assembly. Support is limited as the rules are quite different between C# and C++. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | AssemblyName |
Defines assembly name. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | AssemblyTypeRegistration |
Singleton to register type in executing assembly. More... | |
class | AssemblyTypeRegistrationBase |
Base type for singletons to register type in executing assembly. More... | |
class | ConstructorInfo |
Provides access to constructor metadata. More... | |
class | Details_ReflectionTypeLoadException |
ReflectionTypeLoadException is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never create instances of this class manually. Use the ReflectionTypeLoadException class instead. Never wrap the ReflectionTypeLoadException class instances into System::SmartPtr. More... | |
class | Details_TargetInvocationException |
TargetInvocationException is thrown by methods invoked through reflection. Never create instances of this class manually. Use the TargetInvocationException class instead. Never wrap the TargetInvocationException class instances into System::SmartPtr. More... | |
class | FieldInfo |
Discovers the attributes of a field and provides access to field metadata. More... | |
class | MemberInfo |
Provides reflection information on members. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | MethodBase |
Base information on method. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More... | |
class | MethodInfo |
Represents information on class method. More... | |
class | PropertyInfo |
Represents property information. More... | |
Typedefs | |
using | ReflectionTypeLoadException = System::ExceptionWrapper< Details_ReflectionTypeLoadException > |
ReflectionTypeLoadException is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never wrap the ReflectionTypeLoadException class instances into System::SmartPtr. More... | |
using | TargetInvocationException = System::ExceptionWrapper< Details_TargetInvocationException > |
TargetInvocationException is thrown by methods invoked through reflection. Never wrap the TargetInvocationException class instances into System::SmartPtr. More... | |
Enumerations | |
enum class | BindingFlags { Default = 0x00 , IgnoreCase = 0x01 , DeclaredOnly = 0x02 , Instance = 0x04 , Static = 0x08 , Public = 0x10 , NonPublic = 0x20 , FlattenHierarchy = 0x40 , InvokeMethod = 0x0100 , CreateInstance = 0x0200 , GetField = 0x0400 , SetField = 0x0800 , GetProperty = 0x1000 , SetProperty = 0x2000 , PutDispProperty = 0x4000 , PutRefDispProperty = 0x8000 , ExactBinding = 0x010000 , SuppressChangeType = 0x020000 , OptionalParamBinding = 0x040000 , IgnoreReturn = 0x01000000 } |
Degines members and types lookup modes and bindings. More... | |
enum class | FieldAttributes { FieldAccessMask = 0x0007 , PrivateScope = 0x0000 , Private = 0x0001 , FamANDAssem = 0x0002 , Assembly = 0x0003 , Family = 0x0004 , FamORAssem = 0x0005 , Public = 0x0006 , Static = 0x0010 , InitOnly = 0x0020 , Literal = 0x0040 , NotSerialized = 0x0080 , SpecialName = 0x0200 , PinvokeImpl = 0x2000 , ReservedMask = 0x9500 , RTSpecialName = 0x0400 , HasFieldMarshal = 0x1000 , HasDefault = 0x8000 , HasFieldRVA = 0x0100 } |
Reflected field attributes. More... | |
enum class | MemberTypes { Constructor = 1 , Event = 2 , Field = 4 , Method = 8 , Property = 16 , TypeInfo = 32 , Custom = 64 , NestedType = 128 , All = 191 } |
Marks each type of member. More... | |
using System::Reflection::ReflectionTypeLoadException = typedef System::ExceptionWrapper<Details_ReflectionTypeLoadException> |
ReflectionTypeLoadException is thrown by the Module.GetTypes method if any of the classes in a module fail to load. Never wrap the ReflectionTypeLoadException class instances into System::SmartPtr.
using System::Reflection::TargetInvocationException = typedef System::ExceptionWrapper<Details_TargetInvocationException> |
TargetInvocationException is thrown by methods invoked through reflection. Never wrap the TargetInvocationException class instances into System::SmartPtr.
|
strong |
Degines members and types lookup modes and bindings.
|
strong |
Reflected field attributes.
|
strong |
Marks each type of member.