CodeTV.PluginManager.OnGraphDecomposed C# (CSharp) Method

OnGraphDecomposed() public method

public OnGraphDecomposed ( GraphBuilderBase graph ) : void
graph GraphBuilderBase
return void
        public void OnGraphDecomposed(GraphBuilderBase graph)
        {
            foreach (IPlugin plugin in this.plugins)
            {
                try
                {
                    plugin.OnGraphDecomposed(graph);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(string.Format(Properties.Resources.PluginException, plugin.Name, ex.ToString()));
                }
            }
        }