Click or drag to resize

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.Network
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public bool TryGetValues(
	string key,
	out 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

Boolean
true if the Dictionary contains an element with the specified key; otherwise, false.
See Also