 | StringUtilsSetUrlEncodedKey Method |
Allows setting of a value in a UrlEncoded string. If the key doesn't exist
a new one is set, if it exists it's replaced with the new value.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string SetUrlEncodedKey(
string urlEncoded,
string key,
string value
)
Public Shared Function SetUrlEncodedKey (
urlEncoded As String,
key As String,
value As String
) As String
public:
static String^ SetUrlEncodedKey(
String^ urlEncoded,
String^ key,
String^ value
)
static member SetUrlEncodedKey :
urlEncoded : string *
key : string *
value : string -> string
Parameters
- urlEncoded
- Type: SystemString
A UrlEncoded string of key value pairs - key
- Type: SystemString
[Missing <param name="key"/> documentation for "M:Koden.Utils.StringUtils.SetUrlEncodedKey(System.String,System.String,System.String)"]
- value
- Type: SystemString
[Missing <param name="value"/> documentation for "M:Koden.Utils.StringUtils.SetUrlEncodedKey(System.String,System.String,System.String)"]
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.StringUtils.SetUrlEncodedKey(System.String,System.String,System.String)"]
See Also