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

16 lines
434 B
C#
Raw Normal View History

2020-03-13 13:40:58 +00:00
using System;
using System.Net;
namespace AppLimit.CloudComputing.SharpBox.Common.Net.Web
{
/// <summary>
/// This class contains the argument of the WebRequestExecuting event
/// </summary>
public class WebRequestExecutingEventArgs : EventArgs
{
/// <summary>
/// The webrequest which has to be processed as self
/// </summary>
public WebRequest request;
}
}