Determines whether the beginning of this SqlString matches the specified System.String, using case-insensitive comparison.

Namespace:  NHibernate.SqlCommand
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Function StartsWithCaseInsensitive ( _
	value As String _
) As Boolean
C#
public bool StartsWithCaseInsensitive(
	string value
)
Visual C++
public:
bool StartsWithCaseInsensitive(
	String^ value
)
JavaScript
function startsWithCaseInsensitive(value);

Parameters

value
Type: System..::.String
The System.String to seek

Return Value

true if the SqlString starts with the value.

See Also