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

ExecutableContext() public method

Initializes a new instance of the ExecutableContext class.
public ExecutableContext ( IDescribable describable ) : System.Collections.Generic
describable IDescribable The describable.
return System.Collections.Generic
        public ExecutableContext(IDescribable describable)
        {
            Ensure.ArgumentNotNull(describable, "describable");

            this.behaviors = new Collection<IBehaviorContext>();

            this.Name = describable.Name;
            this.Description = describable.Describe();
        }