📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
983 B

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