Changeset 1197
- Timestamp:
- 9/28/2009 7:24:14 AM (4 years ago)
- Location:
- trunk/eraser6
- Files:
-
- 2 edited
-
Eraser.DefaultPlugins/EraseFirstLast16KB.cs (modified) (1 diff)
-
Eraser.Manager/Method.cs (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/Eraser.DefaultPlugins/EraseFirstLast16KB.cs
r1176 r1197 96 96 97 97 public override void Erase(Stream strm, long erasureLength, Prng prng, 98 Eras erMethodProgressFunction callback)98 ErasureMethodProgressFunction callback) 99 99 { 100 100 //If we have no default or we are the default then throw an exception -
trunk/eraser6/Eraser.Manager/Method.cs
r1193 r1197 100 100 /// <param name="callback">The progress callback function.</param> 101 101 public abstract void Erase(Stream stream, long erasureLength, Prng prng, 102 Eras erMethodProgressFunction callback);102 ErasureMethodProgressFunction callback); 103 103 104 104 /// <summary> … … 174 174 /// <param name="currentPass">The current pass number. The total number 175 175 /// of passes can be found from the Passes property.</param> 176 public delegate void Eras erMethodProgressFunction(long lastWritten, long totalData,176 public delegate void ErasureMethodProgressFunction(long lastWritten, long totalData, 177 177 int currentPass); 178 178 … … 246 246 /// <param name="prng">The PRNG source for random data.</param> 247 247 /// <param name="callback">The progress callback function.</param> 248 public virtual void EraseUnusedSpace(Stream stream, Prng prng, Eras erMethodProgressFunction callback)248 public virtual void EraseUnusedSpace(Stream stream, Prng prng, ErasureMethodProgressFunction callback) 249 249 { 250 250 Erase(stream, long.MaxValue, prng, callback); … … 292 292 293 293 public override void Erase(Stream stream, long erasureLength, Prng prng, 294 Eras erMethodProgressFunction callback)294 ErasureMethodProgressFunction callback) 295 295 { 296 296 //Randomize the order of the passes … … 383 383 384 384 public override void Erase(Stream strm, long erasureLength, Prng prng, 385 Eras erMethodProgressFunction callback)385 ErasureMethodProgressFunction callback) 386 386 { 387 387 throw new InvalidOperationException(S._("The DefaultMethod class should never " +
Note: See TracChangeset
for help on using the changeset viewer.
