36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace System.Net
|
|
{
|
|
/// <summary>Provides data for the <see cref="E:System.Net.WebClient.UploadValuesCompleted" /> event.</summary>
|
|
// 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;
|
|
}
|
|
|
|
/// <summary>Gets the server reply to a data upload operation started by calling an <see cref="Overload:System.Net.WebClient.UploadValuesAsync" /> method.</summary>
|
|
/// <returns>A <see cref="T:System.Byte" /> array containing the server reply.</returns>
|
|
/// <PermissionSet>
|
|
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
|
|
/// </PermissionSet>
|
|
// 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;
|
|
}
|
|
}
|