Exemplo n.º 1
0
 public GistVirtualDirectory(GistVirtualFiles pathProvider, string dirPath, GistVirtualDirectory parentDir)
     : base(pathProvider, parentDir)
 {
     this.PathProvider = pathProvider;
     this.DirPath      = dirPath;
 }
Exemplo n.º 2
0
 public GistVirtualFiles(string gistId, IGistGateway gateway)
 {
     this.Gateway       = gateway;
     this.GistId        = gistId;
     this.rootDirectory = new GistVirtualDirectory(this, null, null);
 }