HeadersTryGetValues Method  | 
Version 106.0.290 
            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: 106.0.290.0 (106.0.290.0)
Syntaxpublic 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