• Articles
  • API Documentation
Search Results for

    Show / Hide Table of Contents
    • SixLabors.ImageSharp.Web
      • FormattedImage
      • FormatUtilities
      • ImageCacheMetadata
      • ImageMetadata
    • SixLabors.ImageSharp.Web.Caching
      • CacheHash
      • ICacheHash
      • IImageCache
      • PhysicalFileSystemCache
      • PhysicalFileSystemCacheOptions
    • SixLabors.ImageSharp.Web.Commands
      • CommandParser
      • DictionaryExtensions
      • IRequestParser
      • PresetOnlyQueryCollectionRequestParser
      • PresetOnlyQueryCollectionRequestParserOptions
      • QueryCollectionRequestParser
    • SixLabors.ImageSharp.Web.Commands.Converters
      • ICommandConverter
      • ICommandConverter<T>
    • SixLabors.ImageSharp.Web.DependencyInjection
      • ApplicationBuilderExtensions
      • IImageSharpBuilder
      • ImageSharpBuilderExtensions
      • ImageSharpConfiguration
      • ServiceCollectionExtensions
    • SixLabors.ImageSharp.Web.Middleware
      • ConcurrentDictionaryExtensions
      • ImageCommandContext
      • ImageProcessingContext
      • ImageSharpMiddleware
      • ImageSharpMiddlewareOptions
    • SixLabors.ImageSharp.Web.Processors
      • BackgroundColorWebProcessor
      • FormatWebProcessor
      • IImageWebProcessor
      • JpegQualityWebProcessor
      • ResizeWebProcessor
    • SixLabors.ImageSharp.Web.Providers
      • IImageProvider
      • PhysicalFileSystemProvider
      • ProcessingBehavior
    • SixLabors.ImageSharp.Web.Resolvers
      • IImageCacheResolver
      • IImageResolver
      • PhysicalFileSystemCacheResolver
      • PhysicalFileSystemResolver
    • SixLabors.ImageSharp.Web.Synchronization
      • AsyncKeyLock<TKey>
      • AsyncKeyReaderWriterLock<TKey>
      • AsyncLock
      • AsyncReaderWriterLock
      • RefCountedConcurrentDictionary<TKey, TValue>

    Class ImageCommandContext

    Contains information about the current image request and parsed commands.

    Inheritance
    Object
    ImageCommandContext
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: SixLabors.ImageSharp.Web.Middleware
    Assembly: SixLabors.ImageSharp.Web.dll
    Syntax
    public class ImageCommandContext

    Constructors

    | Improve this Doc View Source

    ImageCommandContext(HttpContext, IDictionary<String, String>, CommandParser, CultureInfo)

    Initializes a new instance of the ImageCommandContext class.

    Declaration
    public ImageCommandContext(HttpContext context, IDictionary<string, string> commands, CommandParser parser, CultureInfo culture)
    Parameters
    Type Name Description
    HttpContext context

    The current HTTP request context.

    IDictionary<String, String> commands

    The dictionary containing the collection of URI derived processing commands.

    CommandParser parser

    The command parser for parsing URI derived processing commands.

    CultureInfo culture

    The culture used to parse commands.

    Properties

    | Improve this Doc View Source

    Commands

    Gets the dictionary containing the collection of URI derived processing commands.

    Declaration
    public IDictionary<string, string> Commands { get; }
    Property Value
    Type Description
    IDictionary<String, String>
    | Improve this Doc View Source

    Context

    Gets the current HTTP request context.

    Declaration
    public HttpContext Context { get; }
    Property Value
    Type Description
    HttpContext
    | Improve this Doc View Source

    Culture

    Gets the culture used for parsing commands.

    Declaration
    public CultureInfo Culture { get; }
    Property Value
    Type Description
    CultureInfo
    | Improve this Doc View Source

    Parser

    Gets the command parser for parsing URI derived processing commands.

    Declaration
    public CommandParser Parser { get; }
    Property Value
    Type Description
    CommandParser
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX