Checks if data is contained in this buffer.

Namespace: Jscape.Email
Assembly: Jscape.Email (in Jscape.Email.dll) Version: 2.4.5.0

Syntax

C#
public bool Contains(
	byte[] data
)
Visual Basic
Public Function Contains ( _
	data As Byte() _
) As Boolean
Visual C++
public:
bool Contains(
	array<unsigned char>^ data
)

Parameters

data
Type: array<System..::..Byte>[]()[][]
The data to check for.

Return Value

CopyC#
true
if data is found,
CopyC#
false
otherwise.

See Also