scripts
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.IO;
|
||||
|
||||
namespace System.Net
|
||||
{
|
||||
/// <summary>Provides data for the <see cref="E:System.Net.WebClient.OpenWriteCompleted" /> event.</summary>
|
||||
// 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;
|
||||
}
|
||||
|
||||
/// <summary>Gets a writable stream that is used to send data to a server.</summary>
|
||||
/// <returns>A <see cref="T:System.IO.Stream" /> where you can write data to be uploaded.</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: 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user