mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Allows augmentation of the querystring to allow watermarking. Former-commit-id: 0b8db9f2f54858725e29826d98fbb4de8af9cbe6 Former-commit-id: 45a24b35a38f477fdaf711abd7d1fb2046afc687pull/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