Decodes an input string to its proper format when used with Ajax (all ajax callbacks are encoded in utf-8).

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static string DecodeAjax(
	string inputText
)
Visual Basic
Public Shared Function DecodeAjax ( 
	inputText As String
) As String
Visual C++
public:
static String^ DecodeAjax(
	String^ inputText
)
F#
static member DecodeAjax : 
        inputText : string -> string 

Parameters

inputText
Type: System..::..String
String to decode.

Return Value

Type: String
Decoded string.

See Also