IStringMinifier.Unminify Method
.NET Framework 4
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.
Namespace: Microsoft.AspNet.SignalR.Infrastructure
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Function Unminify ( _
value As String _
) As String
'Usage
Dim instance As IStringMinifier
Dim value As String
Dim returnValue As String
returnValue = instance.Unminify(value)
string Unminify(
string value
)
String^ Unminify(
String^ value
)
abstract Unminify :
value:string -> string
function Unminify(
value : String
) : String
Parameters
- value
Type: System.String
A minified string that was returned by a previous call to Minify.
Return Value
Type: System.String
The argument of all previous calls to Minify that returned value. If every call to Minify on this instance of IStringMinifier has never returned value or if the most recent call to Minify that did return value was followed by a call to RemoveUnminified sharing the same argument, Unminify may return null but must not throw.