Method | Description | |
---|---|---|
Error ( string value ) : string |
Returns a simple REST Error response.
|
|
HtmlDecode ( string value ) : string |
Returns an HTML decoded string.
|
|
HtmlEncode ( string value ) : string |
Returns an HTML encoded string.
|
|
OK ( ) : string |
Returns the OK response.
|
|
OK ( string value ) : string |
Returns the OK response with a value.
|
|
Response ( string status, string value ) : string |
Returns a REST response.
|
|
UrlDecode ( string value ) : string |
URL decodes a string.
|
|
UrlEncode ( string value ) : string |
URL encodes a string.
|
public static Error ( string value ) : string | ||
value | string | The value to send. |
return | string |
public static HtmlDecode ( string value ) : string | ||
value | string | The value instance. |
return | string |
public static HtmlEncode ( string value ) : string | ||
value | string | The value instance. |
return | string |
public static OK ( string value ) : string | ||
value | string | The value instance. |
return | string |
public static Response ( string status, string value ) : string | ||
status | string | The status of the response. |
value | string | The value instance. |
return | string |
public static UrlDecode ( string value ) : string | ||
value | string | The value instance. |
return | string |
public static UrlEncode ( string value ) : string | ||
value | string | The value instance. |
return | string |