コード例 #1
0
ファイル: OpenResponse.cs プロジェクト: hungud/elFinder.Net
 public OpenResponse(DTOBase currentWorkingDirectory, FullPath fullPath)
     : base(currentWorkingDirectory)
 {
     Options = new Options(fullPath);
     _files.Add(currentWorkingDirectory);
 }
コード例 #2
0
 public InitResponse(DTOBase currentWorkingDirectory, Options options)
     : base(currentWorkingDirectory)
 {
     Options = options;
 }
コード例 #3
0
ファイル: InitResponse.cs プロジェクト: hungud/elFinder.Net
 public InitResponse(DTOBase currentWorkingDirectory)
     : base(currentWorkingDirectory)
 {
     Options = new Options();
 }