using System; using System.ComponentModel; namespace System.Net { /// Provides data for the event. // Token: 0x0200025A RID: 602 public class UploadFileCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs { // Token: 0x0600157C RID: 5500 RVA: 0x00044F44 File Offset: 0x00043144 internal UploadFileCompletedEventArgs(byte[] result, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { this.result = result; } /// Gets the server reply to a data upload operation that is started by calling an method. /// A array that contains the server reply. /// /// /// // Token: 0x17000708 RID: 1800 // (get) Token: 0x0600157D RID: 5501 RVA: 0x00044F58 File Offset: 0x00043158 public byte[] Result { get { return this.result; } } // Token: 0x040011D9 RID: 4569 private byte[] result; } }