 | StringUtilsGetUrlEncodedKey Method |
Retrieves a value by key from a UrlEncoded string.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string GetUrlEncodedKey(
string urlEncoded,
string key
)
Public Shared Function GetUrlEncodedKey (
urlEncoded As String,
key As String
) As String
public:
static String^ GetUrlEncodedKey(
String^ urlEncoded,
String^ key
)
static member GetUrlEncodedKey :
urlEncoded : string *
key : string -> string
Parameters
- urlEncoded
- Type: SystemString
UrlEncoded String - key
- Type: SystemString
Key to retrieve value for
Return Value
Type:
Stringreturns the value or "" if the key is not found or the value is blank
See Also