8 writes to ErrorText
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
553
ce.
ErrorText
= m.Groups[full ? 8 : 3].Value;
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
529
ce.
ErrorText
= m.Groups[5].Value;
System.Data.Entity.Design (1)
System\Data\Entity\Design\EntityCodeGenerator.cs (1)
662
error.
ErrorText
= actual.Message;
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Compiler.cs (1)
301
error.
ErrorText
= XslTransformException.CreateMessage(Res.Xslt_WarningAsError, error.ErrorText);
System.Web (2)
Compilation\AssemblyBuilder.cs (1)
1150
badBaseClassError.
ErrorText
= SR.GetString(SR.Bad_Base_Class_In_Code_File);
Compilation\AssemblyResolver.cs (1)
332
error.
ErrorText
= message;
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\XomlCompilerError.cs (2)
55
this.
ErrorText
= exception.Message;
66
this.
ErrorText
= error.ErrorText;
24 references to ErrorText
System (2)
compmod\system\codedom\compiler\CompilerError.cs (2)
156
ErrorText
});
162
ErrorText
);
System.Activities (2)
System\Activities\ExpressionParser\SourceExpressionException.cs (1)
98
info.AddValue("text" + index, error.
ErrorText
);
System\Activities\XamlIntegration\TextExpressionCompiler.cs (1)
2382
message.Message = ce.
ErrorText
;
System.Data.Entity.Design (2)
System\Data\Entity\Design\EntityCodeGenerator.cs (2)
449
string message = error.
ErrorText
;
461
message = String.Format(CultureInfo.InvariantCulture, "{0}({1})", error.
ErrorText
, error.ErrorNumber);
System.Data.SqlXml (4)
System\Xml\Xsl\XslException.cs (1)
128
: base(Res.Xml_UserException, new string[] { error.
ErrorText
})
System\Xml\Xsl\Xslt\Compiler.cs (3)
301
error.ErrorText = XslTransformException.CreateMessage(Res.Xslt_WarningAsError, error.
ErrorText
);
357
return string.CompareOrdinal(x.
ErrorText
, y.
ErrorText
);
System.Web (6)
Compilation\AssemblyBuilder.cs (2)
1111
error.
ErrorText
!= null && error.
ErrorText
.IndexOf("FrameworkInitialize", StringComparison.OrdinalIgnoreCase) >= 0)) {
Configuration\BrowserCapabilitiesCodeGenerator.cs (1)
829
throw new HttpCompileException(error.
ErrorText
);
ErrorFormatter.cs (2)
1657
htmlEncodedText = HttpUtility.HtmlEncode(e.
ErrorText
);
1716
sb.Append(HttpUtility.HtmlEncode(e.
ErrorText
));
HttpException.cs (1)
380
e.FileName, e.Line, e.ErrorNumber, e.
ErrorText
);
System.Web.Mobile (1)
Mobile\MobileErrorInfo.cs (1)
73
this.MiscText = error.ErrorNumber + ":" + error.
ErrorText
;
System.Workflow.ComponentModel (7)
AuthoringOM\Compiler\CompileXomlTask.cs (2)
605
this.Log.LogWarning(error.
ErrorText
, error.ErrorNumber, error.FileName, error.Line, error.Column);
617
this.Log.LogError(error.
ErrorText
, error.ErrorNumber, error.FileName, error.Line, error.Column);
AuthoringOM\Compiler\XomlCompilerError.cs (5)
66
this.ErrorText = error.
ErrorText
;
99
return string.Format(CultureInfo.CurrentCulture, "{0} : {1} {2}: {3}", new object[] { FileName, IsWarning ? "warning" : "error", ErrorNumber,
ErrorText
});
101
return string.Format(CultureInfo.CurrentCulture, "{0}({1},{2}) : {3} {4}: {5}", new object[] { FileName, this.incrementLineAndColumn ? Line + 1 : Line, this.incrementLineAndColumn ? Column + 1 : Column, IsWarning ? "warning" : "error", ErrorNumber,
ErrorText
});
105
return string.Format(CultureInfo.CurrentCulture, "{0} {1}: {2}", IsWarning ? "warning" : "error", ErrorNumber,
ErrorText
);
130
return this.
ErrorText
;