Share via


ParserResults.ParserErrors Property

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets or sets the list of errors which occurred during parsing.

Namespace:  System.Web.Razor
Assembly:  System.Web.Razor (in System.Web.Razor.dll)

Syntax

'Declaration
Public Property ParserErrors As IList(Of RazorError)
    Get 
    Private Set
'Usage
Dim instance As ParserResults 
Dim value As IList(Of RazorError)

value = instance.ParserErrors
public IList<RazorError> ParserErrors { get; private set; }
public:
property IList<RazorError^>^ ParserErrors {
    IList<RazorError^>^ get ();
    private: void set (IList<RazorError^>^ value);
}
member ParserErrors : IList<RazorError> with get, private set
function get ParserErrors () : IList<RazorError>
private function set ParserErrors (value : IList<RazorError>)

Property Value

Type: System.Collections.Generic.IList<RazorError>
The list of errors which occurred during parsing.

See Also

Reference

ParserResults Class

System.Web.Razor Namespace