[阅读: 576] 2005-01-24 08:27:24
internal class TestFileStream: FileStream
{
public TestFileStream(IntPtr handle, FileAccess access): base(handle, access)
{
}
protected override void Dispose(bool disposing)
{
try
{
base.Dispose(disposing);
}
catch (Exception ex)
{
Log.Write(EventCode.Trace, ErrorLevel.Warning, 0x01050009, "Flush filestream failed " + " : " + ex.ToString());
if (disposing)
throw ex;
}
}
}
DISSENT IS THE HIGHEST FORM OF PATRIOTISM !
--Thomas Jefferson