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