Locates the index of the specified data.

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

Syntax

C#
public int IndexOf(
	string str,
	string encoding,
	int begin
)
Visual Basic
Public Function IndexOf ( _
	str As String, _
	encoding As String, _
	begin As Integer _
) As Integer
Visual C++
public:
int IndexOf(
	String^ str, 
	String^ encoding, 
	int begin
)

Parameters

str
Type: System..::..String
The string to search for.
encoding
Type: System..::..String
The encoding to use with the search.
begin
Type: System..::..Int32
The starting index.

Return Value

The index of the specified string, or -1 if not found.

See Also