using System; namespace System.IO { /// Provides data for the event. /// 2 // Token: 0x0200010E RID: 270 public class ErrorEventArgs : EventArgs { /// Initializes a new instance of the class. /// An that represents the error that occurred. // Token: 0x060009C7 RID: 2503 RVA: 0x0001A540 File Offset: 0x00018740 public ErrorEventArgs(Exception exception) { this.exception = exception; } /// Gets the that represents the error that occurred. /// An that represents the error that occurred. /// 2 // Token: 0x060009C8 RID: 2504 RVA: 0x0001A550 File Offset: 0x00018750 public virtual Exception GetException() { return this.exception; } // Token: 0x0400033B RID: 827 private Exception exception; } }