IStringMinifier::Unminify Method

.NET Framework 4.5

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)

String^ Unminify(
	String^ value
)

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.
Show: