Table of Contents

Class MethodBaseOptions

Namespace
Cuemon.Reflection
Assembly
Cuemon.Core.dll

Configuration options for System.Reflection.MethodBase.

public class MethodBaseOptions : IParameterObject
Inheritance
Object
MethodBaseOptions
Implements

Constructors

MethodBaseOptions()

Initializes a new instance of the MethodBaseOptions class.

public MethodBaseOptions()

Properties

Comparison

Gets or sets the System.StringComparison rules to use when resolving a member name.

public StringComparison Comparison { get; set; }

Property Value

StringComparison

The System.StringComparison rules to use when resolving a member name.

Flags

Gets or sets the System.Reflection.BindingFlags that specifies how the member search is conducted.

public BindingFlags Flags { get; set; }

Property Value

BindingFlags

The System.Reflection.BindingFlags that specifies how the member search is conducted.

Types

Gets or sets the types representing the number, order, and type of the parameters for the member to resolve.

public Type[] Types { get; set; }

Property Value

Type[]

The types representing the number, order, and type of the parameters for the member to resolve.

See Also