Show / Hide Table of Contents

Interface ITransitionState

Provides information about a transition's state.

Namespace: Kephas.Services.Transitioning
Assembly: Kephas.Core.dll
Syntax
public interface ITransitionState

Properties

| Improve this Doc View Source

Exception

Gets the exception in the case the transitioning is faulted.

Declaration
Exception Exception { get; }
Property Value
Type Description
System.Exception

The exception.

| Improve this Doc View Source

IsCompleted

Gets a value indicating whether the transition is completed.

Declaration
bool IsCompleted { get; }
Property Value
Type Description
System.Boolean

true if the transition is completed; otherwise, false.

| Improve this Doc View Source

IsCompletedSuccessfully

Gets a value indicating whether the transition is completed succcessfully.

Declaration
bool IsCompletedSuccessfully { get; }
Property Value
Type Description
System.Boolean

true if the transition is completed succcessfully; otherwise, false.

| Improve this Doc View Source

IsFaulted

Gets a value indicating whether the transition is faulted.

Declaration
bool IsFaulted { get; }
Property Value
Type Description
System.Boolean

true if the transition is faulted; otherwise, false.

| Improve this Doc View Source

IsInProgress

Gets a value indicating whether the transition is in progress.

Declaration
bool IsInProgress { get; }
Property Value
Type Description
System.Boolean

true if the transition is in progress; otherwise, false.

| Improve this Doc View Source

IsNotStarted

Gets a value indicating whether the transition is not started.

Declaration
bool IsNotStarted { get; }
Property Value
Type Description
System.Boolean

true if the transition is not started; otherwise, false.

Extension Methods

DynamicObjectExtensions.SetPropertyValue(Object, String, Object)
DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)
DynamicObjectExtensions.GetPropertyValue(Object, String)
DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)
DynamicObjectExtensions.GetRuntimeTypeInfo(Object)
DynamicObjectExtensions.ToDynamic(Object)
DynamicObjectExtensions.ToExpando(Object)
BehaviorValue.ToBehaviorValue<TValue>(TValue)
CollectionExtensions.AddRange<T, TItem>(T, IEnumerable<TItem>)
LoggingExtensions.GetLogger(Object, IContext)
TypeExtensions.GetAbstractType(Object)
TypeExtensions.GetAbstractTypeInfo(Object)
ReflectionHelper.GetTypeInfo(Object)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX