C# Class Microsoft.Silverlight.Testing.Harness.MethodContainer

A method container.
Inheritance: CompositeWorkItem
Mostra file Open project: garyjohnson/wpnest

Public Methods

Method Description
Invoke ( ) : bool

Invoke into the method.

MethodContainer ( object instance, MethodInfo method, ITestMethod testMethod ) : System

Constructs a new method container.

Protected Methods

Method Description
FirstInvoke ( ) : void

On the first invoke, make sure there's a task to call the method.

Private Methods

Method Description
MethodContainer ( ) : System

Constructs a new method container.

Method Details

FirstInvoke() protected method

On the first invoke, make sure there's a task to call the method.
protected FirstInvoke ( ) : void
return void

Invoke() public method

Invoke into the method.
public Invoke ( ) : bool
return bool

MethodContainer() public method

Constructs a new method container.
public MethodContainer ( object instance, MethodInfo method, ITestMethod testMethod ) : System
instance object An instance of the method's type.
method System.Reflection.MethodInfo The method reflection object.
testMethod ITestMethod The test method.
return System