mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Allows augmentation of the querystring to allow watermarking. Former-commit-id: cca7c0b765373aeacabcbf8784433a82eca61ac0 Former-commit-id: 3206659d2bc3e41998da0b49577ecc4213685b8dpull/17/head
4 changed files with 74 additions and 10 deletions
@ -0,0 +1,25 @@ |
|||||
|
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
// <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; } |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue