Castle.Facilities.DynamicLoader.RemoteLoader.RemoteLoader C# (CSharp) Method

RemoteLoader() public method

Creates a new RemoteLoader. This constructor should not be called directly in the code, but via System.AppDomain.CreateInstance(string,string).
public RemoteLoader ( ) : System
return System
		public RemoteLoader()
		{
			this.appDomain = AppDomain.CurrentDomain;

			// forces the loading of every library on the AppDomain directory
			this.LoadAllAssemblies();

			this.kernel = new DefaultKernel();
		}