// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) James South. // Licensed under the Apache License, Version 2.0. // // // The process querystring event arguments. // // -------------------------------------------------------------------------------------------------------------------- namespace ImageProcessor.Web.Helpers { using System; /// /// The process querystring event arguments. /// public class ProcessQueryStringEventArgs : EventArgs { /// /// Gets or sets the querystring. /// public string Querystring { get; set; } /// /// Gets or sets the raw http request url. /// public string RawUrl { get; set; } } }