Click or drag to resize
WebHeaderCollectionGetValues Method
Returns the values for the specified header name.

Namespace: Eclo.NETMF.SIM800H
Assembly: Eclo.NETMF.SIM800H (in Eclo.NETMF.SIM800H.dll) Version: 1.1.97.0 (1.1.97.0)
Syntax
C#
public string[] GetValues(
	string header
)

Parameters

header
Type: SystemString
The name of the header.

Return Value

Type: String
An array of parsed string objects.
Remarks
Takes a header name and returns a string array representing the individual values for that header. For example, if the headers contain the following line:
Accept: text/plain, text/html
then GetValues("Accept") returns an array of two strings: "text/plain" and "text/html".
See Also