Click or drag to resize
IReflect Interface
Interoperates with the IDispatch interface.

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public interface IReflect

The IReflect type exposes the following members.

Methods
  NameDescription
Public methodGetField
Returns the FieldInfo object that corresponds to the specified field and binding flag.
Public methodGetFields
Returns an array of FieldInfo objects that correspond to all fields of the current class.
Public methodGetMember
Retrieves an array of MemberInfo objects corresponding to all public members or to all members that match a specified name.
Public methodGetMembers
Retrieves an array of MemberInfo objects that correspond either to all public members or to all members of the current class.
Public methodGetMethod(String, BindingFlags)
Retrieves a MethodInfo object that corresponds to a specified method under specified search constraints.
Public methodGetMethod(String, BindingFlags, Binder, Type, ParameterModifier)
Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.
Public methodGetMethods
Retrieves an array of MethodInfo objects with all public methods or all methods of the current class.
Public methodGetProperties
Retrieves an array of PropertyInfo objects corresponding to all public properties or to all properties of the current class.
Public methodGetProperty(String, BindingFlags)
Retrieves a PropertyInfo object corresponding to a specified property under specified search constraints.
Public methodGetProperty(String, BindingFlags, Binder, Type, Type, ParameterModifier)
Retrieves a PropertyInfo object that corresponds to a specified property with specified search constraints.
Top
Properties
  NameDescription
Public propertyUnderlyingSystemType
Gets the underlying type that represents the IReflect object.
Top
See Also