DocSpace-client/thirdparty/AppLimit.CloudComputing.SharpBox/Common/Net/Web/WebRequestExecutedEventArgs.cs
2020-03-13 16:40:58 +03:00

32 lines
798 B
C#

using System;
using System.IO;
using System.Net;
namespace AppLimit.CloudComputing.SharpBox.Common.Net.Web
{
/// <summary>
/// This class contains the argument of the WebRequestExecuted event
/// </summary>
public class WebRequestExecutedEventArgs : EventArgs
{
/// <summary>
/// The web reponse
/// </summary>
public WebResponse response;
/// <summary>
/// The timespan of the webrequest
/// </summary>
public TimeSpan timeNeeded;
/// <summary>
/// The result as data stream
/// </summary>
public Stream resultStream;
/// <summary>
/// possibe web exception
/// </summary>
public WebException exception;
}
}