C# Класс Caliburn.Micro.SequentialResult

An implementation of IResult that enables sequential execution of multiple results.
Наследование: IResult
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Execute ( ActionExecutionContext context ) : void

Executes the result using the specified context.

SequentialResult ( IEnumerable children ) : System

Initializes a new instance of the SequentialResult class.

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

Метод Описание
ChildCompleted ( object sender, Caliburn.Micro.ResultCompletionEventArgs args ) : void
OnComplete ( Exception error, bool wasCancelled ) : void

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

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

Executes the result using the specified context.
public Execute ( ActionExecutionContext context ) : void
context ActionExecutionContext The context.
Результат void

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

Initializes a new instance of the SequentialResult class.
public SequentialResult ( IEnumerable children ) : System
children IEnumerable The children.
Результат System