Check if string contain HTML tags.

Namespace: MonoSoftware.Web
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public static bool ContainsTags(
	string value
)
Visual Basic
Public Shared Function ContainsTags ( 
	value As String
) As Boolean
Visual C++
public:
static bool ContainsTags(
	String^ value
)
F#
static member ContainsTags : 
        value : string -> bool 

Parameters

value
Type: System..::..String
String value to check

Return Value

Type: Boolean
True if value contains HTML tags, False otherwise

See Also