Tokenizer<TSymbol, TSymbolType>.CurrentErrors Property
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Gets a list of the current razor errors.
Namespace: System.Web.Razor.Tokenizer
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Protected Property CurrentErrors As IList(Of RazorError)
Get
Private Set
'Usage
Dim value As IList(Of RazorError)
value = Me.CurrentErrors
protected IList<RazorError> CurrentErrors { get; private set; }
protected:
property IList<RazorError^>^ CurrentErrors {
IList<RazorError^>^ get ();
private: void set (IList<RazorError^>^ value);
}
member CurrentErrors : IList<RazorError> with get, private set
function get CurrentErrors () : IList<RazorError>
private function set CurrentErrors (value : IList<RazorError>)
Property Value
Type: System.Collections.Generic.IList<RazorError>
A list of the current errors.