PluginFramework.AddIn.Core.Framework.StartBundle C# (CSharp) Method

StartBundle() public method

public StartBundle ( IBundle bundle ) : void
bundle IBundle
return void
        public void StartBundle(IBundle bundle)
        {
            if (bundle == null)
            {
                throw new ArgumentNullException("bundle");
            }
            bundle.Start();
        }

Same methods

Framework::StartBundle ( int id ) : IBundle