IExpando Interface

Definition

Enables modification of objects by adding and removing members, represented by MemberInfo objects.

public interface class IExpando : System::Reflection::IReflect
[System.Runtime.InteropServices.Guid("AFBF15E6-C37C-11d2-B88E-00A0C9B471B8")]
public interface IExpando : System.Reflection.IReflect
[System.Runtime.InteropServices.Guid("AFBF15E6-C37C-11d2-B88E-00A0C9B471B8")]
[System.Runtime.InteropServices.ComVisible(true)]
public interface IExpando : System.Reflection.IReflect
[<System.Runtime.InteropServices.Guid("AFBF15E6-C37C-11d2-B88E-00A0C9B471B8")>]
type IExpando = interface
    interface IReflect
[<System.Runtime.InteropServices.Guid("AFBF15E6-C37C-11d2-B88E-00A0C9B471B8")>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type IExpando = interface
    interface IReflect
Public Interface IExpando
Implements IReflect
Derived
Attributes
Implements

Properties

UnderlyingSystemType

Gets the underlying type that represents the IReflect object.

(Inherited from IReflect)

Methods

AddField(String)

Adds the named field to the Reflection object.

AddMethod(String, Delegate)

Adds the named method to the Reflection object.

AddProperty(String)

Adds the named property to the Reflection object.

GetField(String, BindingFlags)

Returns the FieldInfo object that corresponds to the specified field and binding flag.

(Inherited from IReflect)
GetFields(BindingFlags)

Returns an array of FieldInfo objects that correspond to all fields of the current class.

(Inherited from IReflect)
GetMember(String, BindingFlags)

Retrieves an array of MemberInfo objects corresponding to all public members or to all members that match a specified name.

(Inherited from IReflect)
GetMembers(BindingFlags)

Retrieves an array of MemberInfo objects that correspond either to all public members or to all members of the current class.

(Inherited from IReflect)
GetMethod(String, BindingFlags)

Retrieves a MethodInfo object that corresponds to a specified method under specified search constraints.

(Inherited from IReflect)
GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.

(Inherited from IReflect)
GetMethods(BindingFlags)

Retrieves an array of MethodInfo objects with all public methods or all methods of the current class.

(Inherited from IReflect)
GetProperties(BindingFlags)

Retrieves an array of PropertyInfo objects corresponding to all public properties or to all properties of the current class.

(Inherited from IReflect)
GetProperty(String, BindingFlags)

Retrieves a PropertyInfo object corresponding to a specified property under specified search constraints.

(Inherited from IReflect)
GetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

Retrieves a PropertyInfo object that corresponds to a specified property with specified search constraints.

(Inherited from IReflect)
InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])

Invokes a specified member.

(Inherited from IReflect)
RemoveMember(MemberInfo)

Removes the specified member.

Applies to