Show / Hide Table of Contents

Interface IOperationResult

Contract for operation results.

Inherited Members
IExpando.HasDynamicMember(String)
IExpando.ToDictionary(Func<String, String>, Func<Object, Object>)
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
IIndexable.Item[String]
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: Kephas.Operations
Assembly: Kephas.Core.dll
Syntax
public interface IOperationResult : IExpando, IDynamicMetaObjectProvider, IIndexable, INotifyPropertyChanged

Properties

| Improve this Doc View Source

Elapsed

Gets or sets the elapsed time.

Declaration
TimeSpan Elapsed { get; set; }
Property Value
Type Description
System.TimeSpan

The elapsed time.

| Improve this Doc View Source

Exceptions

Gets the exceptions.

Declaration
ICollection<Exception> Exceptions { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<System.Exception>

The exceptions.

| Improve this Doc View Source

Messages

Gets the messages.

Declaration
ICollection<IOperationMessage> Messages { get; }
Property Value
Type Description
System.Collections.Generic.ICollection<IOperationMessage>

The messages.

| Improve this Doc View Source

OperationState

Gets or sets the state of the operation.

Declaration
OperationState OperationState { get; set; }
Property Value
Type Description
OperationState

The state of the operation.

| Improve this Doc View Source

PercentCompleted

Gets or sets the percent completed.

Declaration
float PercentCompleted { get; set; }
Property Value
Type Description
System.Single

The percent completed.

| Improve this Doc View Source

ReturnValue

Gets or sets the return value.

Declaration
object ReturnValue { get; set; }
Property Value
Type Description
System.Object

The return value.

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>)
ExpandoExtensions.Merge<T>(T, Object)
ExpandoExtensions.GetLaxValue<T>(IIndexable, String, T)
LoggingExtensions.GetLogger(Object, IContext)
TypeExtensions.GetAbstractType(Object)
TypeExtensions.GetAbstractTypeInfo(Object)
OperationResultExtensions.MergeException<TResult>(TResult, Exception)
OperationResultExtensions.MergeMessage<TResult>(TResult, String)
OperationResultExtensions.MergeMessage<TResult>(TResult, IOperationMessage)
OperationResultExtensions.MergeResult<TResult>(TResult, IOperationResult)
OperationResultExtensions.MergeResult<TResult>(TResult, Task<IOperationResult>)
OperationResultExtensions.HasErrors(IOperationResult)
OperationResultExtensions.HasWarnings(IOperationResult)
ReflectionHelper.GetTypeInfo(Object)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX