internal FileSystemConnection(FileSystemSharedConnection sharedConnection, FileSystemConnectionManager manager)
 {
     this.sharedConnection = sharedConnection;
     this.manager = manager;
 }
 public FileSystemSharedConnection(FileSystemConnectionManager manager, string sharePath, UncAccessWithCredentials unc, string error)
 {
     this.unc = unc;
     this.SharePath = sharePath;
     this.ErrorMessage = error;
     this.manager = manager;
 }