using System; using System.ComponentModel; using System.IO; namespace System.Net { /// Provides data for the event. // Token: 0x0200024E RID: 590 public class OpenWriteCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs { // Token: 0x060014EB RID: 5355 RVA: 0x00042F9C File Offset: 0x0004119C internal OpenWriteCompletedEventArgs(Stream result, Exception error, bool cancelled, object userState) : base(error, cancelled, userState) { this.result = result; } /// Gets a writable stream that is used to send data to a server. /// A where you can write data to be uploaded. /// /// /// // Token: 0x170006D6 RID: 1750 // (get) Token: 0x060014EC RID: 5356 RVA: 0x00042FB0 File Offset: 0x000411B0 public Stream Result { get { base.RaiseExceptionIfNecessary(); return this.result; } } // Token: 0x0400119E RID: 4510 private Stream result; } }