DocSpace-buildtools/thirdparty/AppLimit.CloudComputing.SharpBox/Common/Net/Web/WebRequestExecutedEventArgs.cs

32 lines
798 B
C#
Raw Normal View History

2020-03-13 13:40:58 +00:00
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;
}
}