CSharpTest.Net
Validate(TextReader) Method
See Also  Example Send Feedback Download Help File
CSharpTest.Net.Library Assembly > CSharpTest.Net.Html Namespace > XhtmlValidation Class > Validate Method : Validate(TextReader) Method

reader

Glossary Item Box

Validate the input textreader

Syntax

Visual Basic (Declaration) 
Public Overloads Sub Validate( _
   ByVal reader As TextReader _
) 
C# 
public void Validate( 
   TextReader reader
)

Parameters

reader

Example

Library/Library.Test/TestXhtmlValid.cs

C#Copy Code
string doc = @"<html>
    <head><title>required</title></head>
    <body></body>
</html>
";

XhtmlValidation v = new XhtmlValidation(XhtmlDTDSpecification.None);
v.Validate(new StringReader(doc));
VB.NETCopy Code
Dim doc As String = "<html>" & vbCr & vbLf & "                <head><title>required</title></head>" & vbCr & vbLf & "                <body></body>" & vbCr & vbLf & "            </html>" & vbCr & vbLf & "            "

Dim v As New XhtmlValidation(XhtmlDTDSpecification.None)
v.Validate(New StringReader(doc))

Requirements

Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7

See Also

Generated with Document! X 2011 by Innovasys