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