Appccelerate.Bootstrapper.Reporting.ExecutableContext.CreateBehaviorContextCore C# (CSharp) Method

CreateBehaviorContextCore() protected method

Creates the behavior context implementation.
protected CreateBehaviorContextCore ( IDescribable describable ) : IBehaviorContext
describable IDescribable The describable which is passed to the behavior context.
return IBehaviorContext
        protected virtual IBehaviorContext CreateBehaviorContextCore(IDescribable describable)
        {
            return new BehaviorContext(describable);
        }
    }