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

A type which handles preparing the underlying dispatcher or timer from which the test work items execute.
Наследование: RunDispatcher
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Run ( ) : void

Begin the execution process by hooking up the underlying DispatcherTimer to call into the test framework regularly and perform test work items.

WebBrowserTick ( Func runNextStep ) : System

Creates a new run method manager using the default value for the timer's millisecond interval.

WebBrowserTick ( Func runNextStep, int millisecondInterval ) : System

Sets up a new run method manager.

Приватные методы

Метод Описание
Timer_Tick ( object sender, EventArgs e ) : void

Call into the underlying work item queue, if the method manager is still set to run.

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

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

Begin the execution process by hooking up the underlying DispatcherTimer to call into the test framework regularly and perform test work items.
public Run ( ) : void
Результат void

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

Creates a new run method manager using the default value for the timer's millisecond interval.
public WebBrowserTick ( Func runNextStep ) : System
runNextStep Func /// Conditional delegate which returns true as long as there is /// additional work. ///
Результат System

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

Sets up a new run method manager.
public WebBrowserTick ( Func runNextStep, int millisecondInterval ) : System
runNextStep Func /// Conditional delegate which returns true as long as there is /// additional work. ///
millisecondInterval int Milliseconds between ticks, at a /// minimum.
Результат System