4 instantiations of ParserError
System.Web (4)
HttpException.cs (1)
561
ParserError thisError = new
ParserError
(Message, _virtualPath, _line);
UI\TemplateParser.cs (3)
226
ParserError parseError = new
ParserError
(message, CurrentVirtualPath, _lineNumber);
253
parseError = new
ParserError
(hpe.Message, hpe.VirtualPath, hpe.Line);
256
parseError = new
ParserError
(ex.Message, CurrentVirtualPath, _lineNumber);
18 references to ParserError
System.Web (18)
Compilation\BuildManager.cs (2)
174
internal static void ReportParseError(
ParserError
parseError) {
208
foreach (
ParserError
parseError in ((HttpParseException)e).ParserErrors) {
Compilation\ClientBuildManagerCallback.cs (1)
30
public virtual void ReportParseError(
ParserError
error) {}
HttpException.cs (12)
561
ParserError
thisError = new ParserError(Message, _virtualPath, _line);
647
public ParserErrorCollection(
ParserError
[] value) {
651
public
ParserError
this[int index] {
652
get { return ((
ParserError
)List[index]); }
656
public int Add(
ParserError
value) {
660
public void AddRange(
ParserError
[] value) {
675
foreach(
ParserError
parserError in value) {
680
public bool Contains(
ParserError
value) {
684
public void CopyTo(
ParserError
[] array, int index) {
688
public int IndexOf(
ParserError
value) {
692
public void Insert(int index,
ParserError
value) {
696
public void Remove(
ParserError
value) {
UI\TemplateParser.cs (3)
226
ParserError
parseError = new ParserError(message, CurrentVirtualPath, _lineNumber);
249
ParserError
parseError;
821
ParserError
firstError = ParserErrors[0];