using System; using System.ComponentModel; namespace System.Net { /// Provides data for the event. // Token: 0x0200025C RID: 604 public class UploadStringCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs { // Token: 0x06001583 RID: 5507 RVA: 0x00044FAC File Offset: 0x000431AC internal UploadStringCompletedEventArgs(string result, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { this.result = result; } /// Gets the server reply to a string upload operation that is started by calling an method. /// A array that contains the server reply. /// /// /// // Token: 0x1700070D RID: 1805 // (get) Token: 0x06001584 RID: 5508 RVA: 0x00044FC0 File Offset: 0x000431C0 public string Result { get { base.RaiseExceptionIfNecessary(); return this.result; } } // Token: 0x040011DE RID: 4574 private string result; } }