Share via


ParserContext.Errors 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 during parsing.

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

Syntax

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

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

Property Value

Type: System.Collections.Generic.IList<RazorError>
The list of errors.

See Also

Reference

ParserContext Class

System.Web.Razor.Parser Namespace