Appccelerate.Bootstrapper.Reporting.ExecutionContext.CreateExecutableContextCore C# (CSharp) Method

CreateExecutableContextCore() protected method

Creates the executable context implementation.
protected CreateExecutableContextCore ( IDescribable describable ) : IExecutableContext
describable IDescribable The describable which is passed to the executable context.
return IExecutableContext
        protected virtual IExecutableContext CreateExecutableContextCore(IDescribable describable)
        {
            return new ExecutableContext(describable);
        }
    }