C# Class StatLight.Client.Harness.Hosts.MSTest.UnitTestProviders.LazyDynamicMethodInfo

A class that does a lazy lookup when needed using reflection.
Mostra file Open project: staxmanade/StatLight

Public Methods

Method Description
HasMethodInfo ( ) : bool

Whether the type has a method info.

LazyDynamicMethodInfo ( Type searchType, string attributeType ) : System

Construct a new lazy method wrapper.

Protected Methods

Method Description
Search ( ) : void
Search ( Type searchType ) : void

Perform a search on the type.

Private Methods

Method Description
GetMethodInfo ( ) : MethodInfo

Method Details

HasMethodInfo() public method

Whether the type has a method info.
public HasMethodInfo ( ) : bool
return bool

LazyDynamicMethodInfo() public method

Construct a new lazy method wrapper.
public LazyDynamicMethodInfo ( Type searchType, string attributeType ) : System
searchType System.Type Type to search.
attributeType string Attribute type.
return System

Search() protected method

protected Search ( ) : void
return void

Search() protected method

Perform a search on the type.
protected Search ( Type searchType ) : void
searchType System.Type
return void