Class: matlab.net.http.HeaderField
Package: matlab.net.http
Compare two HeaderField arrays
compares
two field1
== field2
HeaderField
arrays element by element, returning
an array of logical values indicating matching elements. The arrays
must have the same dimensions, unless one is a scalar.
Two header fields are equal if they are functionally equivalent, even if they are not identical. Functionally equivalent means both of these conditions are true:
Name
properties match using a
case-insensitive comparison
Value
properties match. If the convert
method
is supported for the HeaderField
type, MATLAB® uses
the isequal
method on the results of convert
.
If convert
is not supported, comparisons are based
on a case-sensitive match of the Value
strings.
The ==
method compares the Name
and Value
properties
only. The method ignores the actual classes of field1
and field2
,
since both are instances of the HeaderField
class.