using System;
using System.ComponentModel;
namespace System.Net
{
/// Provides data for the event.
// Token: 0x02000213 RID: 531
public class DownloadDataCompletedEventArgs : global::System.ComponentModel.AsyncCompletedEventArgs
{
// Token: 0x06001220 RID: 4640 RVA: 0x0003650C File Offset: 0x0003470C
internal DownloadDataCompletedEventArgs(byte[] result, Exception error, bool cancelled, object userState)
: base(error, cancelled, userState)
{
this.result = result;
}
/// Gets the data that is downloaded by a method.
/// A array that contains the downloaded data.
///
///
///
// Token: 0x170005EB RID: 1515
// (get) Token: 0x06001221 RID: 4641 RVA: 0x00036520 File Offset: 0x00034720
public byte[] Result
{
get
{
return this.result;
}
}
// Token: 0x04000FB0 RID: 4016
private byte[] result;
}
}