CodeDomProvider.Parse(TextReader) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compiles the code read from the specified text stream into a CodeCompileUnit.
public:
virtual System::CodeDom::CodeCompileUnit ^ Parse(System::IO::TextReader ^ codeStream);
public virtual System.CodeDom.CodeCompileUnit Parse (System.IO.TextReader codeStream);
abstract member Parse : System.IO.TextReader -> System.CodeDom.CodeCompileUnit
override this.Parse : System.IO.TextReader -> System.CodeDom.CodeCompileUnit
Public Overridable Function Parse (codeStream As TextReader) As CodeCompileUnit
Parameters
- codeStream
- TextReader
A TextReader object that is used to read the code to be parsed.
Returns
A CodeCompileUnit that contains a representation of the parsed code.
Exceptions
Neither this method nor the CreateGenerator() method is overridden in a derived class.
Remarks
Note
In the .NET Framework versions 1.0 and 1.1, this method is provided by the ICodeParser implementation that is returned by the CreateParser method of the provider. In version 2.0, this method can be called directly on the code provider even if it is not overridden by the code provider. If the code provider does not override this method, the ICodeParser implementation is called by the base class.
Notes to Inheritors
If you override this method, you must not call the corresponding method of the base class. The base-class method creates a parser in the derived class using the obsolete CreateParser() method for compatibility with preexisting providers that use code parsers. The base-class method then calls the equivalent method in the ICodeParser implementation to perform this function. You will get a NotImplementedException if you call the base-class method from a code provider that does not use a code parser.