Interface IContextFactory
Interface for context factory.
Namespace: Kephas.Services
Assembly: Kephas.Core.dll
Syntax
[SingletonAppServiceContract]
public interface IContextFactoryMethods
| Improve this Doc View SourceCreateContext<TContext>(Object[])
Creates a typed context.
Declaration
TContext CreateContext<TContext>(params object[] args)
    where TContext : IContextParameters
| Type | Name | Description | 
|---|---|---|
| System.Object[] | args | A variable-length parameters list containing arguments. | 
Returns
| Type | Description | 
|---|---|
| TContext | The new context. | 
Type Parameters
| Name | Description | 
|---|---|
| TContext | Type of the context. |