IStringMinifier Interface
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Infrastructure
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Interface IStringMinifier
'Usage
Dim instance As IStringMinifier
public interface IStringMinifier
public interface class IStringMinifier
type IStringMinifier = interface end
public interface IStringMinifier
The IStringMinifier type exposes the following members.
Methods
Name | Description | |
---|---|---|
Minify | Minifies a string in a way that can be reversed by this instance of IStringMinifier. | |
RemoveUnminified | A call to this function indicates that any future attempt to unminify strings that were previously minified from value may be met with a null return value. This provides an opportunity normalize any internal data structures that reference value. | |
Unminify | Reverses a Minify call that was executed at least once previously on this instance of IStringMinifier without any subsequent calls to RemoveUnminified sharing the same argument as the Minify call that returned value. |
Top