Nemerle Documentation

TypeBuilder.GetMembers Method (BindingFlags)

Searches for the members defined for the current TypeInfo, using the specified binding constraints.

public override list GetMembers(
   BindingFlags bindingAttr
);

Remarks

Members include properties, methods, fields, events, and so on. The following BindingFlags filter flags can be used to define which members to include in the search:

The following BindingFlags modifier flags can be used to change how the search works: BindingFlags.DeclaredOnly to search only the members declared on the TType, not members that were simply inherited. Calling this method with only the Public flag or only the NonPublic flag will return the specified members and does not require any other flags. See Nemerle.Compiler.BindingFlags for more information.

See Also

TypeBuilder Class | Nemerle.Compiler Namespace | TypeBuilder.GetMembers Overload List