Gets the Assembly in which the type is declared. For generic types, gets the Assembly in which the generic type is defined.
(Inherited from Type) AssemblyQualifiedName AssemblyQualifiedNameGets the assembly-qualified name of the type, which includes the name of the assembly from which this Type object was loaded.
(Inherited from Type) Attributes AttributesGets the attributes associated with the Type.
(Inherited from Type) BaseType BaseTypeGets the type from which the current Type directly inherits.
(Inherited from Type) ContainsGenericParameters ContainsGenericParametersGets a value indicating whether the current Type object has type parameters that have not been replaced by specific types.
(Inherited from Type) CustomAttributesGets a collection that contains this member's custom attributes.
(Inherited from MemberInfo) DeclaredConstructorsGets a collection of the constructors declared by the current type.
DeclaredEventsGets a collection of the events defined by the current type.
DeclaredFieldsGets a collection of the fields defined by the current type.
DeclaredMembersGets a collection of the members defined by the current type.
DeclaredMethodsGets a collection of the methods defined by the current type.
DeclaredNestedTypesGets a collection of the nested types defined by the current type.
DeclaredPropertiesGets a collection of the properties defined by the current type.
DeclaringMethod DeclaringMethodGets a MethodBase that represents the declaring method, if the current Type represents a type parameter of a generic method.
(Inherited from Type) DeclaringTypeGets the class that declares this member.
(Inherited from MemberInfo) DeclaringTypeGets the type that declares the current nested type or generic type parameter.
(Inherited from Type) FullName FullNameGets the fully qualified name of the type, including its namespace but not its assembly.
(Inherited from Type) GenericParameterAttributes GenericParameterAttributesGets a combination of GenericParameterAttributes flags that describe the covariance and special constraints of the current generic type parameter.
(Inherited from Type) GenericParameterPosition GenericParameterPositionGets the position of the type parameter in the type parameter list of the generic type or method that declared the parameter, when the Type object represents a type parameter of a generic type or a generic method.
(Inherited from Type) GenericTypeArguments GenericTypeArgumentsGets an array of the generic type arguments for this type.
(Inherited from Type) GenericTypeParametersGets an array of the generic type parameters of the current instance.
GUID GUIDGets the GUID associated with the Type.
(Inherited from Type) HasElementType HasElementTypeGets a value indicating whether the current Type encompasses or refers to another type; that is, whether the current Type is an array, a pointer, or is passed by reference.
(Inherited from Type) ImplementedInterfacesGets a collection of the interfaces implemented by the current type.
IsAbstract IsAbstractGets a value indicating whether the Type is abstract and must be overridden.
(Inherited from Type) IsAnsiClass IsAnsiClassGets a value indicating whether the string format attribute AnsiClass
is selected for the Type.
Gets a value that indicates whether the type is an array.
(Inherited from Type) IsAutoClass IsAutoClassGets a value indicating whether the string format attribute AutoClass
is selected for the Type.
Gets a value indicating whether the fields of the current type are laid out automatically by the common language runtime.
(Inherited from Type) IsByRef IsByRefGets a value indicating whether the Type is passed by reference.
(Inherited from Type) IsByRefLikeGets a value that indicates whether the type is a byref-like structure.
(Inherited from Type) IsClass IsClassGets a value indicating whether the Type is a class or a delegate; that is, not a value type or interface.
(Inherited from Type) IsCollectibleGets a value that indicates whether this MemberInfo object is part of an assembly held in a collectible AssemblyLoadContext.
(Inherited from MemberInfo) IsCOMObject IsCOMObjectGets a value indicating whether the Type is a COM object.
(Inherited from Type) IsConstructedGenericTypeGets a value that indicates whether this object represents a constructed generic type. You can create instances of a constructed generic type.
(Inherited from Type) IsContextfulGets a value indicating whether the Type can be hosted in a context.
(Inherited from Type) IsEnum IsEnumGets a value indicating whether the current Type represents an enumeration.
(Inherited from Type) IsExplicitLayout IsExplicitLayoutGets a value indicating whether the fields of the current type are laid out at explicitly specified offsets.
(Inherited from Type) IsFunctionPointerGets a value that indicates whether the current Type is a function pointer.
(Inherited from Type) IsGenericMethodParameterGets a value that indicates whether the current Type represents a type parameter in the definition of a generic method.
(Inherited from Type) IsGenericParameter IsGenericParameterGets a value indicating whether the current Type represents a type parameter in the definition of a generic type or method.
(Inherited from Type) IsGenericType IsGenericTypeGets a value indicating whether the current type is a generic type.
(Inherited from Type) IsGenericTypeDefinition IsGenericTypeDefinitionGets a value indicating whether the current Type represents a generic type definition, from which other generic types can be constructed.
(Inherited from Type) IsGenericTypeParameterGets a value that indicates whether the current Type represents a type parameter in the definition of a generic type.
(Inherited from Type) IsImport IsImportGets a value indicating whether the Type has a ComImportAttribute attribute applied, indicating that it was imported from a COM type library.
(Inherited from Type) IsInterface IsInterfaceGets a value indicating whether the Type is an interface; that is, not a class or a value type.
(Inherited from Type) IsLayoutSequential IsLayoutSequentialGets a value indicating whether the fields of the current type are laid out sequentially, in the order that they were defined or emitted to the metadata.
(Inherited from Type) IsMarshalByRef IsMarshalByRefGets a value indicating whether the Type is marshaled by reference.
(Inherited from Type) IsNested IsNestedGets a value indicating whether the current Type object represents a type whose definition is nested inside the definition of another type.
(Inherited from Type) IsNestedAssembly IsNestedAssemblyGets a value indicating whether the Type is nested and visible only within its own assembly.
(Inherited from Type) IsNestedFamANDAssem IsNestedFamANDAssemGets a value indicating whether the Type is nested and visible only to classes that belong to both its own family and its own assembly.
(Inherited from Type) IsNestedFamily IsNestedFamilyGets a value indicating whether the Type is nested and visible only within its own family.
(Inherited from Type) IsNestedFamORAssem IsNestedFamORAssemGets a value indicating whether the Type is nested and visible only to classes that belong to either its own family or to its own assembly.
(Inherited from Type) IsNestedPrivate IsNestedPrivateGets a value indicating whether the Type is nested and declared private.
(Inherited from Type) IsNestedPublic IsNestedPublicGets a value indicating whether a class is nested and declared public.
(Inherited from Type) IsNotPublic IsNotPublicGets a value indicating whether the Type is not declared public.
(Inherited from Type) IsPointer IsPointerGets a value indicating whether the Type is a pointer.
(Inherited from Type) IsPrimitive IsPrimitiveGets a value indicating whether the Type is one of the primitive types.
(Inherited from Type) IsPublic IsPublicGets a value indicating whether the Type is declared public.
(Inherited from Type) IsSealed IsSealedGets a value indicating whether the Type is declared sealed.
(Inherited from Type) IsSecurityCriticalGets a value that indicates whether the current type is security-critical or security-safe-critical at the current trust level, and therefore can perform critical operations.
(Inherited from Type) IsSecuritySafeCriticalGets a value that indicates whether the current type is security-safe-critical at the current trust level; that is, whether it can perform critical operations and can be accessed by transparent code.
(Inherited from Type) IsSecurityTransparentGets a value that indicates whether the current type is transparent at the current trust level, and therefore cannot perform critical operations.
(Inherited from Type) IsSerializable IsSerializableObsolete.
Gets a value indicating whether the Type is binary serializable.
(Inherited from Type) IsSignatureTypeGets a value that indicates whether the type is a signature type.
(Inherited from Type) IsSpecialName IsSpecialNameGets a value indicating whether the type has a name that requires special handling.
(Inherited from Type) IsSZArrayGets a value that indicates whether the type is an array type that can represent only a single-dimensional array with a zero lower bound.
(Inherited from Type) IsTypeDefinitionGets a value that indicates whether the type is a type definition.
(Inherited from Type) IsUnicodeClass IsUnicodeClassGets a value indicating whether the string format attribute UnicodeClass
is selected for the Type.
Gets a value that indicates whether the current Type is an unmanaged function pointer.
(Inherited from Type) IsValueType IsValueTypeGets a value indicating whether the Type is a value type.
(Inherited from Type) IsVariableBoundArrayGets a value that indicates whether the type is an array type that can represent a multi-dimensional array or an array with an arbitrary lower bound.
(Inherited from Type) IsVisible IsVisibleGets a value indicating whether the Type can be accessed by code outside the assembly.
(Inherited from Type) MemberType MemberTypeGets a MemberTypes value indicating that this member is a type or a nested type.
(Inherited from Type) MetadataTokenGets a value that identifies a metadata element.
(Inherited from MemberInfo) ModuleGets the module in which the type that declares the member represented by the current MemberInfo is defined.
(Inherited from MemberInfo) ModuleGets the module (the DLL) in which the current Type is defined.
(Inherited from Type) NameGets the name of the current member.
(Inherited from MemberInfo) Namespace NamespaceGets the namespace of the Type.
(Inherited from Type) ReflectedTypeGets the class object that was used to obtain this member.
(Inherited from Type) StructLayoutAttribute StructLayoutAttributeGets a StructLayoutAttribute that describes the layout of the current type.
(Inherited from Type) TypeHandleGets the handle for the current Type.
(Inherited from Type) TypeInitializer TypeInitializerGets the initializer for the type.
(Inherited from Type) UnderlyingSystemType UnderlyingSystemTypeIndicates the type provided by the common language runtime that represents this type.
(Inherited from Type) AsType()Returns the current type as a Type object.
Equals(Object)Returns a value that indicates whether this instance is equal to a specified object.
(Inherited from MemberInfo) Equals(Object)Determines if the underlying system type of the current Type object is the same as the underlying system type of the specified Object.
(Inherited from Type) Equals(Type)Determines if the underlying system type of the current Type is the same as the underlying system type of the specified Type.
(Inherited from Type) FindInterfaces(TypeFilter, Object) FindInterfaces(TypeFilter, Object)Returns an array of Type objects representing a filtered list of interfaces implemented or inherited by the current Type.
(Inherited from Type) FindMembers(MemberTypes, BindingFlags, MemberFilter, Object) FindMembers(MemberTypes, BindingFlags, MemberFilter, Object)Returns a filtered array of MemberInfo objects of the specified member type.
(Inherited from Type) GetArrayRank() GetArrayRank()Gets the number of dimensions in an array.
(Inherited from Type) GetAttributeFlagsImpl()When overridden in a derived class, implements the Attributes property and gets a bitwise combination of enumeration values that indicate the attributes associated with the Type.
(Inherited from Type) GetConstructor(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])Searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention.
(Inherited from Type) GetConstructor(BindingFlags, Binder, Type[], ParameterModifier[])Searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints.
(Inherited from Type) GetConstructor(BindingFlags, Type[])Searches for a constructor whose parameters match the specified argument types, using the specified binding constraints.
(Inherited from Type) GetConstructor(Type[]) GetConstructor(Type[])Searches for a public instance constructor whose parameters match the types in the specified array.
(Inherited from Type) GetConstructorImpl(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])When overridden in a derived class, searches for a constructor whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention.
(Inherited from Type) GetConstructors() GetConstructors()Returns all the public constructors defined for the current Type.
(Inherited from Type) GetConstructors(BindingFlags) GetConstructors(BindingFlags)When overridden in a derived class, searches for the constructors defined for the current Type, using the specified BindingFlags
.
When overridden in a derived class, returns an array of all custom attributes applied to this member.
(Inherited from MemberInfo) GetCustomAttributes(Type, Boolean)When overridden in a derived class, returns an array of custom attributes applied to this member and identified by Type.
(Inherited from MemberInfo) GetCustomAttributesData()Returns a list of CustomAttributeData objects representing data about the attributes that have been applied to the target member.
(Inherited from MemberInfo) GetDeclaredEvent(String)Returns an object that represents the specified event declared by the current type.
GetDeclaredField(String)Returns an object that represents the specified field declared by the current type.
GetDeclaredMethod(String)Returns an object that represents the specified method declared by the current type.
GetDeclaredMethods(String)Returns a collection that contains all methods declared on the current type that match the specified name.
GetDeclaredNestedType(String)Returns an object that represents the specified nested type declared by the current type.
GetDeclaredProperty(String)Returns an object that represents the specified property declared by the current type.
GetDefaultMembers() GetDefaultMembers()Searches for the members defined for the current Type whose DefaultMemberAttribute is set.
(Inherited from Type) GetElementType() GetElementType()When overridden in a derived class, returns the Type of the object encompassed or referred to by the current array, pointer or reference type.
(Inherited from Type) GetEnumName(Object) GetEnumName(Object)Returns the name of the constant that has the specified value, for the current enumeration type.
(Inherited from Type) GetEnumNames() GetEnumNames()Returns the names of the members of the current enumeration type.
(Inherited from Type) GetEnumUnderlyingType() GetEnumUnderlyingType()Returns the underlying type of the current enumeration type.
(Inherited from Type) GetEnumValues() GetEnumValues()Returns an array of the values of the constants in the current enumeration type.
(Inherited from Type) GetEnumValuesAsUnderlyingType()Retrieves an array of the values of the underlying type constants of this enumeration type.
(Inherited from Type) GetEvent(String, BindingFlags) GetEvent(String, BindingFlags)When overridden in a derived class, returns the EventInfo object representing the specified event, using the specified binding constraints.
(Inherited from Type) GetEvent(String) GetEvent(String)Returns the EventInfo object representing the specified public event.
(Inherited from Type) GetEvents() GetEvents()Returns all the public events that are declared or inherited by the current Type.
(Inherited from Type) GetEvents(BindingFlags) GetEvents(BindingFlags)When overridden in a derived class, searches for events that are declared or inherited by the current Type, using the specified binding constraints.
(Inherited from Type) GetField(String, BindingFlags) GetField(String, BindingFlags)Searches for the specified field, using the specified binding constraints.
(Inherited from Type) GetField(String) GetField(String)Searches for the public field with the specified name.
(Inherited from Type) GetFields() GetFields()Returns all the public fields of the current Type.
(Inherited from Type) GetFields(BindingFlags) GetFields(BindingFlags)When overridden in a derived class, searches for the fields defined for the current Type, using the specified binding constraints.
(Inherited from Type) GetFunctionPointerCallingConventions()When overridden in a derived class, returns the calling conventions of the current function pointer Type.
(Inherited from Type) GetFunctionPointerParameterTypes()When overridden in a derived class, returns the parameter types of the current function pointer Type.
(Inherited from Type) GetFunctionPointerReturnType()When overridden in a derived class, returns the return type of the current function pointer Type.
(Inherited from Type) GetGenericArguments() GetGenericArguments()Returns an array of Type objects that represent the type arguments of a closed generic type or the type parameters of a generic type definition.
(Inherited from Type) GetGenericParameterConstraints() GetGenericParameterConstraints()Returns an array of Type objects that represent the constraints on the current generic type parameter.
(Inherited from Type) GetGenericTypeDefinition() GetGenericTypeDefinition()Returns a Type object that represents a generic type definition from which the current generic type can be constructed.
(Inherited from Type) GetHashCode()Returns the hash code for this instance.
(Inherited from MemberInfo) GetHashCode()Returns the hash code for this instance.
(Inherited from Type) GetInterface(String, Boolean) GetInterface(String, Boolean)When overridden in a derived class, searches for the specified interface, specifying whether to do a case-insensitive search for the interface name.
(Inherited from Type) GetInterface(String) GetInterface(String)Searches for the interface with the specified name.
(Inherited from Type) GetInterfaceMap(Type)Returns an interface mapping for the specified interface type.
(Inherited from Type) GetInterfaces() GetInterfaces()When overridden in a derived class, gets all the interfaces implemented or inherited by the current Type.
(Inherited from Type) GetMember(String, BindingFlags) GetMember(String, BindingFlags)Searches for the specified members, using the specified binding constraints.
(Inherited from Type) GetMember(String, MemberTypes, BindingFlags) GetMember(String, MemberTypes, BindingFlags)Searches for the specified members of the specified member type, using the specified binding constraints.
(Inherited from Type) GetMember(String) GetMember(String)Searches for the public members with the specified name.
(Inherited from Type) GetMembers() GetMembers()Returns all the public members of the current Type.
(Inherited from Type) GetMembers(BindingFlags) GetMembers(BindingFlags)When overridden in a derived class, searches for the members defined for the current Type, using the specified binding constraints.
(Inherited from Type) GetMemberWithSameMetadataDefinitionAs(MemberInfo)Searches for the MemberInfo on the current Type that matches the specified MemberInfo.
(Inherited from Type) GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention.
(Inherited from Type) GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints.
(Inherited from Type) GetMethod(String, BindingFlags, Type[])Searches for the specified method whose parameters match the specified argument types, using the specified binding constraints.
(Inherited from Type) GetMethod(String, BindingFlags) GetMethod(String, BindingFlags)Searches for the specified method, using the specified binding constraints.
(Inherited from Type) GetMethod(String, Int32, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])Searches for the specified method whose parameters match the specified generic parameter count, argument types and modifiers, using the specified binding constraints and the specified calling convention.
(Inherited from Type) GetMethod(String, Int32, BindingFlags, Binder, Type[], ParameterModifier[])Searches for the specified method whose parameters match the specified generic parameter count, argument types and modifiers, using the specified binding constraints.
(Inherited from Type) GetMethod(String, Int32, BindingFlags, Type[])Searches for the specified method whose parameters match the specified generic parameter count and argument types, using the specified binding constraints.
(Inherited from Type) GetMethod(String, Int32, Type[], ParameterModifier[])Searches for the specified public method whose parameters match the specified generic parameter count, argument types and modifiers.
(Inherited from Type) GetMethod(String, Int32, Type[])Searches for the specified public method whose parameters match the specified generic parameter count and argument types.
(Inherited from Type) GetMethod(String, Type[], ParameterModifier[]) GetMethod(String, Type[], ParameterModifier[])Searches for the specified public method whose parameters match the specified argument types and modifiers.
(Inherited from Type) GetMethod(String, Type[]) GetMethod(String, Type[])Searches for the specified public method whose parameters match the specified argument types.
(Inherited from Type) GetMethod(String) GetMethod(String)Searches for the public method with the specified name.
(Inherited from Type) GetMethodImpl(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])When overridden in a derived class, searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention.
(Inherited from Type) GetMethodImpl(String, Int32, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])When overridden in a derived class, searches for the specified method whose parameters match the specified generic parameter count, argument types and modifiers, using the specified binding constraints and the specified calling convention.
(Inherited from Type) GetMethods() GetMethods()Returns all the public methods of the current Type.
(Inherited from Type) GetMethods(BindingFlags) GetMethods(BindingFlags)When overridden in a derived class, searches for the methods defined for the current Type, using the specified binding constraints.
(Inherited from Type) GetNestedType(String, BindingFlags) GetNestedType(String, BindingFlags)When overridden in a derived class, searches for the specified nested type, using the specified binding constraints.
(Inherited from Type) GetNestedType(String) GetNestedType(String)Searches for the public nested type with the specified name.
(Inherited from Type) GetNestedTypes() GetNestedTypes()Returns the public types nested in the current Type.
(Inherited from Type) GetNestedTypes(BindingFlags) GetNestedTypes(BindingFlags)When overridden in a derived class, searches for the types nested in the current Type, using the specified binding constraints.
(Inherited from Type) GetOptionalCustomModifiers()When overridden in a derived class, returns the optional custom modifiers of the current Type.
(Inherited from Type) GetProperties() GetProperties()Returns all the public properties of the current Type.
(Inherited from Type) GetProperties(BindingFlags) GetProperties(BindingFlags)When overridden in a derived class, searches for the properties of the current Type, using the specified binding constraints.
(Inherited from Type) GetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])Searches for the specified property whose parameters match the specified argument types and modifiers, using the specified binding constraints.
(Inherited from Type) GetProperty(String, BindingFlags) GetProperty(String, BindingFlags)Searches for the specified property, using the specified binding constraints.
(Inherited from Type) GetProperty(String, Type, Type[], ParameterModifier[]) GetProperty(String, Type, Type[], ParameterModifier[])Searches for the specified public property whose parameters match the specified argument types and modifiers.
(Inherited from Type) GetProperty(String, Type, Type[]) GetProperty(String, Type, Type[])Searches for the specified public property whose parameters match the specified argument types.
(Inherited from Type) GetProperty(String, Type) GetProperty(String, Type)Searches for the public property with the specified name and return type.
(Inherited from Type) GetProperty(String, Type[]) GetProperty(String, Type[])Searches for the specified public property whose parameters match the specified argument types.
(Inherited from Type) GetProperty(String) GetProperty(String)Searches for the public property with the specified name.
(Inherited from Type) GetPropertyImpl(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])When overridden in a derived class, searches for the specified property whose parameters match the specified argument types and modifiers, using the specified binding constraints.
(Inherited from Type) GetRequiredCustomModifiers()When overridden in a derived class, returns the required custom modifiers of the current Type.
(Inherited from Type) GetType()Gets the current Type.
(Inherited from Type) GetTypeCodeImpl()Returns the underlying type code of this Type instance.
(Inherited from Type) HasElementTypeImpl()When overridden in a derived class, implements the HasElementType property and determines whether the current Type encompasses or refers to another type; that is, whether the current Type is an array, a pointer, or is passed by reference.
(Inherited from Type) HasSameMetadataDefinitionAs(MemberInfo) (Inherited from MemberInfo) InvokeMember(String, BindingFlags, Binder, Object, Object[], CultureInfo)Invokes the specified member, using the specified binding constraints and matching the specified argument list and culture.
(Inherited from Type) InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])When overridden in a derived class, invokes the specified member, using the specified binding constraints and matching the specified argument list, modifiers and culture.
(Inherited from Type) InvokeMember(String, BindingFlags, Binder, Object, Object[])Invokes the specified member, using the specified binding constraints and matching the specified argument list.
(Inherited from Type) IsArrayImpl()When overridden in a derived class, implements the IsArray property and determines whether the Type is an array.
(Inherited from Type) IsAssignableFrom(Type) IsAssignableFrom(Type)Determines whether an instance of a specified type c
can be assigned to a variable of the current type.
Returns a value that indicates whether the specified type can be assigned to the current type.
IsAssignableTo(Type)Determines whether the current type can be assigned to a variable of the specified targetType
.
When overridden in a derived class, implements the IsByRef property and determines whether the Type is passed by reference.
(Inherited from Type) IsCOMObjectImpl()When overridden in a derived class, implements the IsCOMObject property and determines whether the Type is a COM object.
(Inherited from Type) IsContextfulImpl()Implements the IsContextful property and determines whether the Type can be hosted in a context.
(Inherited from Type) IsDefined(Type, Boolean)When overridden in a derived class, indicates whether one or more attributes of the specified type or of its derived types is applied to this member.
(Inherited from MemberInfo) IsEnumDefined(Object) IsEnumDefined(Object)Returns a value that indicates whether the specified value exists in the current enumeration type.
(Inherited from Type) IsEquivalentTo(Type) IsEquivalentTo(Type)Determines whether two COM types have the same identity and are eligible for type equivalence.
(Inherited from Type) IsInstanceOfType(Object) IsInstanceOfType(Object)Determines whether the specified object is an instance of the current Type.
(Inherited from Type) IsMarshalByRefImpl()Implements the IsMarshalByRef property and determines whether the Type is marshaled by reference.
(Inherited from Type) IsPointerImpl()When overridden in a derived class, implements the IsPointer property and determines whether the Type is a pointer.
(Inherited from Type) IsPrimitiveImpl()When overridden in a derived class, implements the IsPrimitive property and determines whether the Type is one of the primitive types.
(Inherited from Type) IsSubclassOf(Type) IsSubclassOf(Type)Determines whether the current Type derives from the specified Type.
(Inherited from Type) IsValueTypeImpl()Implements the IsValueType property and determines whether the Type is a value type; that is, not a class or an interface.
(Inherited from Type) MakeArrayType() MakeArrayType()Returns a Type object representing a one-dimensional array of the current type, with a lower bound of zero.
(Inherited from Type) MakeArrayType(Int32) MakeArrayType(Int32)Returns a Type object representing an array of the current type, with the specified number of dimensions.
(Inherited from Type) MakeByRefType() MakeByRefType()Returns a Type object that represents the current type when passed as a ref
parameter (ByRef
parameter in Visual Basic).
Substitutes the elements of an array of types for the type parameters of the current generic type definition and returns a Type object representing the resulting constructed type.
(Inherited from Type) MakePointerType() MakePointerType()Returns a Type object that represents a pointer to the current type.
(Inherited from Type) MemberwiseClone()Creates a shallow copy of the current Object.
(Inherited from Object) ToString()Returns a string that represents the current object.
(Inherited from Object) ToString()Returns a String
representing the name of the current Type
.
Maps a set of names to a corresponding set of dispatch identifiers.
(Inherited from MemberInfo) _MemberInfo.GetType()Gets a Type object representing the MemberInfo class.
(Inherited from MemberInfo) _MemberInfo.GetTypeInfo(UInt32, UInt32, IntPtr)Retrieves the type information for an object, which can then be used to get the type information for an interface.
(Inherited from MemberInfo) _MemberInfo.GetTypeInfoCount(UInt32)Retrieves the number of type information interfaces that an object provides (either 0 or 1).
(Inherited from MemberInfo) _MemberInfo.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)Provides access to properties and methods exposed by an object.
(Inherited from MemberInfo) _Type.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)Maps a set of names to a corresponding set of dispatch identifiers.
(Inherited from Type) _Type.GetTypeInfo(UInt32, UInt32, IntPtr)Retrieves the type information for an object, which can then be used to get the type information for an interface.
(Inherited from Type) _Type.GetTypeInfoCount(UInt32)Retrieves the number of type information interfaces that an object provides (either 0 or 1).
(Inherited from Type) _Type.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)Provides access to properties and methods exposed by an object.
(Inherited from Type) ICustomAttributeProvider.GetCustomAttributes(Boolean)Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
(Inherited from MemberInfo) ICustomAttributeProvider.GetCustomAttributes(Type, Boolean)Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
(Inherited from MemberInfo) ICustomAttributeProvider.IsDefined(Type, Boolean)Indicates whether one or more instance of attributeType
is defined on this member.
Returns a representation of the current type as a TypeInfo object.
GetCustomAttribute(MemberInfo, Type, Boolean)Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member.
GetCustomAttribute(MemberInfo, Type)Retrieves a custom attribute of a specified type that is applied to a specified member.
GetCustomAttribute<T>(MemberInfo, Boolean)Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member.
GetCustomAttribute<T>(MemberInfo)Retrieves a custom attribute of a specified type that is applied to a specified member.
GetCustomAttributes(MemberInfo, Boolean)Retrieves a collection of custom attributes that are applied to a specified member, and optionally inspects the ancestors of that member.
GetCustomAttributes(MemberInfo, Type, Boolean)Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member.
GetCustomAttributes(MemberInfo, Type)Retrieves a collection of custom attributes of a specified type that are applied to a specified member.
GetCustomAttributes(MemberInfo)Retrieves a collection of custom attributes that are applied to a specified member.
GetCustomAttributes<T>(MemberInfo, Boolean)Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member.
GetCustomAttributes<T>(MemberInfo)Retrieves a collection of custom attributes of a specified type that are applied to a specified member.
IsDefined(MemberInfo, Type, Boolean)Indicates whether custom attributes of a specified type are applied to a specified member, and, optionally, applied to its ancestors.
IsDefined(MemberInfo, Type)Indicates whether custom attributes of a specified type are applied to a specified member.
GetTypeInfo(Type)Returns the TypeInfo representation of the specified type.
GetMetadataToken(MemberInfo)Gets a metadata token for the given member, if available.
HasMetadataToken(MemberInfo)Returns a value that indicates whether a metadata token is available for the specified member.
GetRuntimeEvent(Type, String)Retrieves an object that represents the specified event.
GetRuntimeEvents(Type)Retrieves a collection that represents all the events defined on a specified type.
GetRuntimeField(Type, String)Retrieves an object that represents a specified field.
GetRuntimeFields(Type)Retrieves a collection that represents all the fields defined on a specified type.
GetRuntimeInterfaceMap(TypeInfo, Type)Returns an interface mapping for the specified type and the specified interface.
GetRuntimeMethod(Type, String, Type[])Retrieves an object that represents a specified method.
GetRuntimeMethods(Type)Retrieves a collection that represents all methods defined on a specified type.
GetRuntimeProperties(Type)Retrieves a collection that represents all the properties defined on a specified type.
GetRuntimeProperty(Type, String)Retrieves an object that represents a specified property.
GetConstructor(Type, Type[]) GetConstructors(Type, BindingFlags) GetConstructors(Type) GetEvent(Type, String) GetField(Type, String) GetFields(Type) GetGenericArguments(Type) GetInterfaces(Type) GetMembers(Type) GetProperties(Type, BindingFlags) GetProperty(Type, String, Type, Type[]) GetProperty(Type, String, Type) GetProperty(Type, String) IsAssignableFrom(Type, Type) IsInstanceOfType(Type, Object)RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4