Show / Hide Table of Contents

Interface IServiceBehaviorContext<TServiceContract>

Interface for service behavior context.

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.Services.Behaviors
Assembly: Kephas.Core.dll
Syntax
public interface IServiceBehaviorContext<out TServiceContract> : IContext, IExpando, IDynamicMetaObjectProvider, IIndexable, ILoggable, IDisposable
Type Parameters
Name Description
TServiceContract

Type of the service contract.

Properties

| Improve this Doc View Source

Context

Gets the behavior context.

Declaration
IContext Context { get; }
Property Value
Type Description
IContext

The behavior context.

| Improve this Doc View Source

Metadata

Gets the service metadata.

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

The service metadata.

| Improve this Doc View Source

Service

Gets the service.

Declaration
TServiceContract Service { get; }
Property Value
Type Description
TServiceContract

The service.

| Improve this Doc View Source

ServiceFactory

Gets the service factory.

Declaration
IExportFactory<TServiceContract> ServiceFactory { get; }
Property Value
Type Description
IExportFactory<TServiceContract>

The service factory.

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)
ReflectionHelper.GetTypeInfo(Object)
ContextExtensions.WithIdentity<TContext>(TContext, IIdentity)
ContextExtensions.WithLogger<TContext>(TContext, ILogger)
ContextExtensions.AddResource<TContext>(TContext, IDisposable[])
MessageBrokerExtensions.CreateBrokeredMessageBuilder(IContext)
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