This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.ImageOptimizer.
Summary
Base class for remote, web image optimizers.
- Assembly
- Cake
.ImageOptimizer .dll - Namespace
- Cake
.ImageOptimizer - Base Types
-
- Object
- BaseOptimizer
- Derived Types
graph BT
Type-->Base0["BaseOptimizer"]
click Base0 "/api/Cake.ImageOptimizer/BaseOptimizer"
Base0-->Base1["Object"]
Type["BaseRemoteOptimizer"]
class Type type-node
Derived0["SmushItOptimizer"]-->Type
click Derived0 "/api/Cake.ImageOptimizer/SmushItOptimizer"
Derived1["KrakenOptimizer"]-->Type
click Derived1 "/api/Cake.ImageOptimizer/KrakenOptimizer"
Derived2["PunyPngOptimizer"]-->Type
click Derived2 "/api/Cake.ImageOptimizer/PunyPngOptimizer"
Syntax
public abstract class BaseRemoteOptimizer : BaseOptimizer
Constructors
Name | Summary |
---|---|
BaseRemoteOptimizer |
Initializes a new instance of the BaseRemoteOptimizer class.
|
Fields
Name | Constant Value | Summary |
---|---|---|
_Environment |
Represents the environment Cake operates in.
Inherited from BaseOptimizer
|
|
_FileSystem |
Represents a file system.
Inherited from BaseOptimizer
|
|
_Log |
Represents a log.
Inherited from BaseOptimizer
|
Properties
Name | Value | Summary |
---|---|---|
Endpoint | Uri |
Gets the endpoint URL of the web service.
|
Extensions | IList |
A list of extensions supported by the Optimizer
Inherited from BaseOptimizer
|
FileParameter | string |
Gets the parameter name of the file to be uploaded
|
FileSize | int |
Gets the maximum file size to optimize.
Inherited from BaseOptimizer
|
Name | string |
Gets the name of the optimizer.
Inherited from BaseOptimizer
|
Timeout | int |
Gets the maximum timespan for the request.
Inherited from BaseOptimizer
|
Methods
Name | Value | Summary |
---|---|---|
Optimize |
ImageOptimizerResult |
Optimizes the specified file.
|
PopulatePostData |
IDictionary |
Populates the request data before posting it to the web optimizer
|
ReadResponse |
ImageOptimizerResult |
Read the response from the web optimizer
|
Supports |
bool |
Does the specified file.
Inherited from BaseOptimizer
|
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|