DataRequestaddStringParameterIfNotCurrentlyPresent Method |
Add a parameter to the request only if it is already not in the request.
Parameter names are case-insensitive
Namespace:
Kratos_3.Network
Assembly:
Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntaxpublic void addStringParameterIfNotCurrentlyPresent(
string name,
string value
)
Public Sub addStringParameterIfNotCurrentlyPresent (
name As String,
value As String
)
public:
void addStringParameterIfNotCurrentlyPresent(
String^ name,
String^ value
)
member addStringParameterIfNotCurrentlyPresent :
name : string *
value : string -> unit
Parameters
- name
- Type: SystemString
Name of parmaeter to add - value
- Type: SystemString
Value of parameter to add
ExceptionsException | Condition |
---|
Exception | Thrown if parameter name is empty string |
See Also