SecurityElement::IsValidText Method (String^)

 

Determines whether a string is valid as text within an XML element.

Namespace:   System.Security
Assembly:  mscorlib (in mscorlib.dll)

public:
static bool IsValidText(
	String^ text
)

Parameters

text
Type: System::String^

The text to test for validity.

Return Value

Type: System::Boolean

true if the text parameter is a valid XML text element; otherwise, false.

This method can be used to test Text before setting it.

The following code shows the use of the IsValidText method to determine whether a string is valid as XML element text. This code example is part of a larger example provided for the SecurityElement class.

if (  !SecurityElement::IsValidText( tagText ) )

.NET Framework
Available since 1.1
Return to top
Show: