using System; using System.ComponentModel; namespace System.Net { /// Provides data for the event. // Token: 0x02000215 RID: 533 public class DownloadStringCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs { // Token: 0x06001225 RID: 4645 RVA: 0x00036568 File Offset: 0x00034768 internal DownloadStringCompletedEventArgs(string result, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { this.result = result; } /// Gets the data that is downloaded by a method. /// A that contains the downloaded data. /// /// /// // Token: 0x170005EE RID: 1518 // (get) Token: 0x06001226 RID: 4646 RVA: 0x0003657C File Offset: 0x0003477C public string Result { get { base.RaiseExceptionIfNecessary(); return this.result; } } // Token: 0x04000FB3 RID: 4019 private string result; } }