/// <summary>
 /// Remove the data reader from the vault.
 /// </summary>
 /// <param name="name">The name of the data reader to remove</param>
 public void RemoveReader(string name)
 {
     myManager.RemoveFile(name);
 }
示例#2
0
 /// <summary>
 /// Clean up the pocket contents at the end of training.
 /// </summary>
 public void Cleanup()
 {
     manager.RemoveFile(fileName);
 }
 /// <summary>
 /// Remove the data file from the vault.
 /// </summary>
 /// <param name="name">The name of the data file</param>
 public void RemoveDataFile(string name)
 {
     myManager.RemoveFile(name);
 }
示例#4
0
 /// <summary>
 /// Remove the network from the vault.
 /// </summary>
 /// <param name="name">The name of the network to remove</param>
 public void RemoveNetwork(string name)
 {
     myManager.RemoveFile(name);
 }