using System; using System.ComponentModel; namespace System.Net { /// Provides data for the event. // Token: 0x0200025D RID: 605 public class UploadValuesCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs { // Token: 0x06001585 RID: 5509 RVA: 0x00044FD0 File Offset: 0x000431D0 internal UploadValuesCompletedEventArgs(byte[] result, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { this.result = result; } /// Gets the server reply to a data upload operation started by calling an method. /// A array containing the server reply. /// /// /// // Token: 0x1700070E RID: 1806 // (get) Token: 0x06001586 RID: 5510 RVA: 0x00044FE4 File Offset: 0x000431E4 public byte[] Result { get { return this.result; } } // Token: 0x040011DF RID: 4575 private byte[] result; } }