Checks to see if the name has been quoted.

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

Syntax

Visual Basic (Declaration)
Public Overridable Function IsQuoted ( _
	name As String _
) As Boolean
C#
public virtual bool IsQuoted(
	string name
)
Visual C++
public:
virtual bool IsQuoted(
	String^ name
)
JavaScript
function isQuoted(name);

Parameters

name
Type: System..::.String
The name to check if it is quoted

Return Value

true if name is already quoted.

Remarks

The default implementation is to compare the first character to Dialect.OpenQuote and the last char to Dialect.CloseQuote

See Also