Property | Type | Description | |
---|---|---|---|
IsValidCategoryname | |||
IsValidResourcename |
Method | Description | |
---|---|---|
ContainsUnicodeCharacter ( this input ) : bool | ||
Escape ( this unescaped ) : string | ||
IsAlpha ( this payload ) : bool |
Determines whether the specified payload is alpha.
|
|
IsAlphaNumeric ( this payload ) : bool |
Determines whether [is alpha numeric] [the specified payload].
|
|
IsBase64 ( this payload ) : bool |
Determines whether the specified payload is base64.
|
|
IsBinary ( this payload ) : bool |
Determines whether the specified payload is binary.
|
|
IsEmail ( this payload ) : bool |
Determines whether the specified payload is email.
|
|
IsHex ( this payload ) : bool |
Determines whether the specified payload is hex.
|
|
IsNumeric ( this payload ) : bool |
Determines whether the specified payload is numeric.
|
|
IsNumeric ( this payload, decimal &value ) : bool |
Determines whether the specified payload is numeric.
|
|
IsRealNumber ( this payload ) : bool |
Determines whether [is real number] [the specified payload].
|
|
IsRealNumber ( this payload, int &value ) : bool |
Determines whether [is real number] [the specified payload].
|
|
IsValidCategoryName ( this payload ) : bool |
Determines whether the specified payload is a valid resource category name.
|
|
IsWholeNumber ( this payload ) : bool |
Determines whether [is whole number] [the specified payload].
|
|
IsWholeNumber ( this payload, int &value ) : bool |
Determines whether [is whole number] [the specified payload].
|
|
ReverseString ( this s ) : string |
Reverses the string.
|
|
TryAddKeyboardAccellerator ( this input ) : string |
Keyboard Accellerators are used in Windows to allow easy shortcuts to controls like Buttons and MenuItems. These allow users to press the Alt key, and a shortcut key will be highlighted on the control. If the user presses that key, that control will be activated. This method checks a string if it contains a keyboard accellerator. If it doesn't, it adds one to the beginning of the string. If there are two strings with the same accellerator, Windows handles it. The keyboard accellerator character for WPF is underscore (_). It will not be visible.
|
|
Unescape ( this payload ) : string |
public static ContainsUnicodeCharacter ( this input ) : bool | ||
input | this | |
return | bool |
public static Escape ( this unescaped ) : string | ||
unescaped | this | |
return | string |
public static IsAlpha ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsAlphaNumeric ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsBase64 ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsBinary ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsEmail ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsHex ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsNumeric ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsNumeric ( this payload, decimal &value ) : bool | ||
payload | this | The payload. |
value | decimal | The value. |
return | bool |
public static IsRealNumber ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsRealNumber ( this payload, int &value ) : bool | ||
payload | this | The payload. |
value | int | The value. |
return | bool |
public static IsValidCategoryName ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsWholeNumber ( this payload ) : bool | ||
payload | this | The payload. |
return | bool |
public static IsWholeNumber ( this payload, int &value ) : bool | ||
payload | this | The payload. |
value | int | The value. |
return | bool |
public static ReverseString ( this s ) : string | ||
s | this | The s. |
return | string |
public static TryAddKeyboardAccellerator ( this input ) : string | ||
input | this | |
return | string |
public static Unescape ( this payload ) : string | ||
payload | this | |
return | string |
public static Regex,System.Text.RegularExpressions IsValidCategoryname | ||
return |