HeadersTryGetValues Method |
Version 109.1.110
Gets an array of values for the specified key. Values are comma seperated and will be split into a string[].
Quoted values will not be split, and the quotes will be removed.
Namespace:
CefSharp.DevTools.Network
Assembly:
CefSharp (in CefSharp.dll) Version: 109.1.110.0 (109.1.110.0)
Syntax public bool TryGetValues(
string key,
out string[] values
)
public:
bool TryGetValues(
String^ key,
[OutAttribute] array<String^>^% values
)
Parameters
- key
- Type: SystemString
The header name. - values
- Type: SystemString
the associated values from the dictionary separated into individual values, or null if the key is not present.
Return Value
Type:
Booleantrue if the Dictionary contains an element with the specified key; otherwise, false.
See Also