using System;
using System.ComponentModel;
namespace System.Net
{
/// Provides data for the event.
// Token: 0x02000259 RID: 601
public class UploadDataCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs
{
// Token: 0x0600157A RID: 5498 RVA: 0x00044F28 File Offset: 0x00043128
internal UploadDataCompletedEventArgs(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: 0x17000707 RID: 1799
// (get) Token: 0x0600157B RID: 5499 RVA: 0x00044F3C File Offset: 0x0004313C
public byte[] Result
{
get
{
return this.result;
}
}
// Token: 0x040011D8 RID: 4568
private byte[] result;
}
}