HeadersTryGetValues Method |
Version 130.1.90
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.NetworkAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public bool TryGetValues(
string key,
out string[] values
)
public:
bool TryGetValues(
String^ key,
[OutAttribute] array<String^>^% values
)
Parameters
- key String
- The header name.
- values String
- the associated values from the dictionary separated into individual values, or null if the key is not present.
Return Value
Booleantrue if the Dictionary contains an element with the specified key; otherwise, false.
See Also