Show / Hide Table of Contents

Class PipelineAwareCommandHandlerResult<TResult>

Returned from pipeline aware command handlers to signify if the command execution pipeline should be halted

Inheritance
System.Object
PipelineAwareCommandHandlerResult<TResult>
Namespace: AzureFromTheTrenches.Commanding.Abstractions.Model
Assembly: AzureFromTheTrenches.Commanding.Abstractions.dll
Syntax
public sealed class PipelineAwareCommandHandlerResult<TResult> : object
Type Parameters
Name Description
TResult

Constructors

| Improve this Doc View Source

PipelineAwareCommandHandlerResult(Boolean, TResult)

Constructor

Declaration
public PipelineAwareCommandHandlerResult(bool shouldStop, TResult result)
Parameters
Type Name Description
System.Boolean shouldStop

Should the execution pipeline be halted

TResult result

The result of the handler

Properties

| Improve this Doc View Source

Result

The result of the handler

Declaration
public TResult Result { get; }
Property Value
Type Description
TResult
| Improve this Doc View Source

ShouldStop

Should the execution pipeline be halted

Declaration
public bool ShouldStop { get; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
  • 0 Comments
Back to top Copyright © 2018 James Randall