Appccelerate.Bootstrapper.Reporting.ReportingContext.CreateExecutionContextCore C# (CSharp) Method

CreateExecutionContextCore() protected method

Creates the execution context implementation.
protected CreateExecutionContextCore ( IDescribable describable ) : IExecutionContext
describable IDescribable The describable which is passed to the execution context.
return IExecutionContext
        protected virtual IExecutionContext CreateExecutionContextCore(IDescribable describable)
        {
            return new ExecutionContext(describable);
        }
    }