コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="VirtualFolderInitializer"/> class.
 /// </summary>
 /// <param name="host">The host.</param>
 /// <param name="persister">The persister.</param>
 /// <param name="fs">The fs.</param>
 /// <param name="virtualNodes">The virtual nodes.</param>
 /// <param name="editConfig">The edit config.</param>
 public VirtualFolderInitializer(IHost host, IPersister persister, IFileSystem fs, VirtualNodeFactory virtualNodes, ConnectionMonitor monitor, UploadFolderSource folderSource, FolderNodeProvider nodeProvider)
 {
     this.host         = host;
     this.persister    = persister;
     this.virtualNodes = virtualNodes;
     this.monitor      = monitor;
     this.folderSource = folderSource;
     this.nodeProvider = nodeProvider;
 }
コード例 #2
0
ファイル: UploadFileHttpHandler.cs プロジェクト: Biswo/n2cms
 public UploadFileHttpHandler(IFileSystem fileSystem, UploadFolderSource folderSource, EventBroker broker)
 {
     this.fileSystem = fileSystem;
     this.folderSource = folderSource;
     this.broker = broker;
 }
コード例 #3
0
		public DatabaseFileSystemMigrator(IFileSystem fs, UploadFolderSource folderSource, IWebContext webContext)
		{
			this.fs = fs;
			this.folderSource = folderSource;
			this.webContext = webContext;
		}
コード例 #4
0
 public UploadFileHttpHandler(IFileSystem fileSystem, UploadFolderSource folderSource, EventBroker broker)
 {
     this.fileSystem   = fileSystem;
     this.folderSource = folderSource;
     this.broker       = broker;
 }
コード例 #5
0
 public DatabaseFileSystemMigrator(IFileSystem fs, UploadFolderSource folderSource, IWebContext webContext)
 {
     this.fs           = fs;
     this.folderSource = folderSource;
     this.webContext   = webContext;
 }