BuildProvider.OpenReader Method (System.Web.Compilation)

Switch View :
ScriptFree
.NET Framework Class Library
BuildProvider.OpenReader Method

Opens a text reader for reading from the virtual path of the current build provider object.

Namespace:  System.Web.Compilation
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
Protected Function OpenReader As TextReader
C#
protected TextReader OpenReader()
Visual C++
protected:
TextReader^ OpenReader()
F#
member OpenReader : unit -> TextReader 

Return Value

Type: System.IO.TextReader
An open TextReader that can be used to read the contents of the VirtualPath.
Remarks

Use the Read method on the returned TextReader object to read the contents of the VirtualPath property for a BuildProvider object.

After calling the OpenReader method, you must use the Close method to close the TextReader object and free associated system resources.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference