/// <summary>
        /// Adds the subfile loaded handler.	
        /// </summary>
        /// <param name="handler">The handler.</param>
        /// <remarks></remarks>
	    public void AddSubfileLoadedHandler (
	        ConfigurationSubfileLoadedHandler handler)
	    {
	        preprocessor.SubfileLoaded += handler;
	    }
		    public void AddConfigurationSubfileLoadedHandler (
		        ConfigurationSubfileLoadedHandler handler)
		    {		        
		    }
        public void AddConfigurationSubfileLoadedHandler(
	        ConfigurationSubfileLoadedHandler handler)
        {
            loader.AddSubfileLoadedHandler( handler );
        }
Example #4
0
 public void AddConfigurationSubfileLoadedHandler(
     ConfigurationSubfileLoadedHandler handler)
 {
 }
        public void AddConfigurationSubfileLoadedHandler(
	        ConfigurationSubfileLoadedHandler handler)
        {
            slaveService.AddConfigurationSubfileLoadedHandler( handler );
        }
 /// <summary>
 /// Adds the configuration subfile loaded handler.
 /// </summary>
 /// <param name="handler">The handler.</param>
 /// <remarks></remarks>
 public void AddConfigurationSubfileLoadedHandler(
     ConfigurationSubfileLoadedHandler handler)
 {
     slaveService.AddConfigurationSubfileLoadedHandler(handler);
 }
Example #7
0
 /// <summary>
 /// Adds the configuration subfile loaded handler.
 /// </summary>
 /// <param name="handler">The handler.</param>
 /// <remarks></remarks>
 public void AddConfigurationSubfileLoadedHandler(
     ConfigurationSubfileLoadedHandler handler)
 {
     loader.AddSubfileLoadedHandler(handler);
 }
 /// <summary>
 /// Adds the subfile loaded handler.
 /// </summary>
 /// <param name="handler">The handler.</param>
 /// <remarks></remarks>
 public void AddSubfileLoadedHandler(
     ConfigurationSubfileLoadedHandler handler)
 {
     preprocessor.SubfileLoaded += handler;
 }