Click or drag to resize

HeadersTryGetValues Method

Version 104.4.240
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: 104.4.240.0 (104.4.240.0)
Syntax
public bool TryGetValues(
	string key,
	out 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: Boolean
true if the Dictionary contains an element with the specified key; otherwise, false.
See Also