Exemplo n.º 1
0
 private bool CheckDiskLayoutVersion(out string error)
 {
     return(DiskLayoutVersion.CheckDiskLayoutVersion(this.repoMetadata, out error));
 }
Exemplo n.º 2
0
 public void SaveCurrentDiskLayoutVersion()
 {
     DiskLayoutVersion.SaveCurrentDiskLayoutVersion(this.repoMetadata);
 }
Exemplo n.º 3
0
 public bool TryGetOnDiskLayoutVersion(out int version, out string error)
 {
     return(DiskLayoutVersion.TryGetOnDiskLayoutVersion(this.repoMetadata, out version, out error));
 }
Exemplo n.º 4
0
 private bool CheckDiskLayoutVersion(bool allowUpgrade, out string error)
 {
     return(DiskLayoutVersion.CheckDiskLayoutVersion(this.repoMetadata, allowUpgrade, out error));
 }
Exemplo n.º 5
0
 /* TODO: Story 957530 Remove code using GVFS_HEAD with next breaking change. */
 public bool OnDiskVersionSupportsIndexProjection()
 {
     return(DiskLayoutVersion.OnDiskVersionSupportsIndexProjection(this.repoMetadata));
 }
Exemplo n.º 6
0
 public bool OnDiskVersionUsesAlwaysExclude()
 {
     return(DiskLayoutVersion.OnDiskVersionUsesAlwaysExclude(this.repoMetadata));
 }