Show / Hide Table of Contents

Interface IMessagingContext

Contract for contexts when processing messages.

Inherited Members
IContext.CompositionContext
IContext.AmbientServices
IContext.Identity
IExpando.HasDynamicMember(String)
IExpando.ToDictionary(Func<String, String>, Func<Object, Object>)
System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression)
IIndexable.Item[String]
ILoggable.Logger
System.IDisposable.Dispose()
Namespace: Kephas.Messaging
Assembly: Kephas.Messaging.dll
Syntax
public interface IMessagingContext : IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable

Properties

| Improve this Doc View Source

Exception

Gets or sets the exception.

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

The exception.

| Improve this Doc View Source

Handler

Gets or sets the handler.

Declaration
IMessageHandler Handler { get; set; }
Property Value
Type Description
IMessageHandler

The handler.

| Improve this Doc View Source

Message

Gets or sets the message.

Declaration
IMessage Message { get; set; }
Property Value
Type Description
IMessage

The message.

| Improve this Doc View Source

MessageProcessor

Gets the message processor.

Declaration
IMessageProcessor MessageProcessor { get; }
Property Value
Type Description
IMessageProcessor

The message processor.

| Improve this Doc View Source

Response

Gets or sets the response.

Declaration
IMessage Response { get; set; }
Property Value
Type Description
IMessage

The response.

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)
MessageBrokerExtensions.CreateBrokeredMessageBuilder(IContext)
MessagingContextExtensions.GetBrokeredMessage(IMessagingContext)
MessagingContextExtensions.SetBrokeredMessage(IMessagingContext, IBrokeredMessage)
ContextExtensions.InitialData(IContext)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<(Object entity, ChangeState changeState)>)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<Object>)
ContextExtensions.WithInitialData<TContext>(TContext, IEnumerable<IChangeStateTrackableEntityEntry>)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX