C# Класс Microsoft.Silverlight.Testing.Harness.MethodInvokeWorkItem

A simple work item that invokes a method through the reflection MethodInfo instance.
Наследование: WorkItem
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Invoke ( ) : bool

Invokes the underlying method on the instance and marks the test work item as complete.

MethodInvokeWorkItem ( object instance, MethodInfo method, ITestMethod testMethod ) : System.Reflection

Creates a new method invoke work item for a MethodInfo instance.

Описание методов

Invoke() публичный Метод

Invokes the underlying method on the instance and marks the test work item as complete.
public Invoke ( ) : bool
Результат bool

MethodInvokeWorkItem() публичный Метод

Creates a new method invoke work item for a MethodInfo instance.
public MethodInvokeWorkItem ( object instance, MethodInfo method, ITestMethod testMethod ) : System.Reflection
instance object The type instance.
method System.Reflection.MethodInfo The method on the type to invoke when the /// work item is executed.
testMethod ITestMethod The test method metadata.
Результат System.Reflection