1 type derived from CompilerError
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\XomlCompilerError.cs (1)
33public sealed class WorkflowCompilerError : CompilerError, IWorkflowCompilerError
6 instantiations of CompilerError
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
543CompilerError ce = new CompilerError();
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
519CompilerError ce = new CompilerError();
System.Activities (1)
System\Activities\ExpressionParser\SourceExpressionException.cs (1)
59this.errors[i] = new CompilerError(fileName, line, column, errorNumber, errorText);
System.Data.Entity.Design (1)
System\Data\Entity\Design\EntityCodeGenerator.cs (1)
661System.CodeDom.Compiler.CompilerError error = new System.CodeDom.Compiler.CompilerError();
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Compiler.cs (1)
282return new CompilerError(
System.Web (1)
Compilation\AssemblyResolver.cs (1)
331CompilerError error = new CompilerError();
73 references to CompilerError
System (24)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
543CompilerError ce = new CompilerError();
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
519CompilerError ce = new CompilerError();
compmod\system\codedom\compiler\CompilerError.cs (2)
33/// Initializes a new instance of <see cref='System.CodeDom.Compiler.CompilerError'/>. 45/// Initializes a new instance of <see cref='System.CodeDom.Compiler.CompilerError'/> using the specified
compmod\system\codedom\compiler\CompilerErrorCollection.cs (20)
17/// A collection that stores <see cref='System.CodeDom.Compiler.CompilerError'/> objects. 43/// Initializes a new instance of <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> containing any array of <see cref='System.CodeDom.Compiler.CompilerError'/> objects. 46public CompilerErrorCollection(CompilerError[] value) { 51/// <para>Represents the entry at the specified index of the <see cref='System.CodeDom.Compiler.CompilerError'/>.</para> 53public CompilerError this[int index] { 55return ((CompilerError)(List[index])); 63/// <para>Adds a <see cref='System.CodeDom.Compiler.CompilerError'/> with the specified value to the 66public int Add(CompilerError value) { 73public void AddRange(CompilerError[] value) { 99/// <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> contains the specified <see cref='System.CodeDom.Compiler.CompilerError'/>.</para> 101public bool Contains(CompilerError value) { 109public void CopyTo(CompilerError[] array, int index) { 122foreach (CompilerError e in this) { 141foreach (CompilerError e in this) { 152/// <para>Returns the index of a <see cref='System.CodeDom.Compiler.CompilerError'/> in 155public int IndexOf(CompilerError value) { 160/// <para>Inserts a <see cref='System.CodeDom.Compiler.CompilerError'/> into the <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> at the specified index.</para> 162public void Insert(int index, CompilerError value) { 167/// <para> Removes a specific <see cref='System.CodeDom.Compiler.CompilerError'/> from the 170public void Remove(CompilerError value) {
System.Activities (7)
System\Activities\ExpressionParser\SourceExpressionException.cs (6)
18CompilerError[] errors; 38this.errors = new CompilerError[errors.Count]; 50this.errors = new CompilerError[length]; 63public IEnumerable<CompilerError> Errors 69this.errors = new CompilerError[0]; 92CompilerError error = this.errors[i];
System\Activities\XamlIntegration\TextExpressionCompiler.cs (1)
2378foreach (CompilerError ce in compilerResults.Errors)
System.Data.Entity.Design (4)
System\Data\Entity\Design\EntityCodeGenerator.cs (4)
354errors.AddRange(codeGenerator.Errors.OfType<CompilerError>().Select(c => ConvertToEdmSchemaError(c, errorCode))); 446private static EdmSchemaError ConvertToEdmSchemaError(CompilerError error, ModelBuilderErrorCode defaultErrorCode) 582string message = results.Errors.OfType<CompilerError>().Aggregate(string.Empty, (accumulated, input) => accumulated == string.Empty ? input.ToString() : accumulated + Environment.NewLine + input.ToString()); 661System.CodeDom.Compiler.CompilerError error = new System.CodeDom.Compiler.CompilerError();
System.Data.SqlXml (14)
System\Xml\Xsl\XslException.cs (1)
127internal XslLoadException(CompilerError error)
System\Xml\Xsl\Xslt\Compiler.cs (9)
280public CompilerError CreateError(ISourceLineInfo lineInfo, string res, params string[] args) { 289CompilerError error = CreateError(lineInfo, res, args); 299CompilerError error = CreateError(lineInfo, res, args); 312CompilerError[] errors = new CompilerError[errorColl.Count]; 314Array.Sort<CompilerError>(errors, new CompilerErrorComparer(this.moduleOrder)); 320private class CompilerErrorComparer : IComparer<CompilerError> { 327public int Compare(CompilerError x, CompilerError y) {
System\Xml\Xsl\Xslt\Scripts.cs (2)
327foreach (CompilerError error in results.Errors) { 351private static void FixErrorPosition(CompilerError error, List<ScriptClass> scriptsForLang) {
System\Xml\Xsl\XsltOld\Compiler.cs (2)
720private void FixCompilerError(CompilerError e) { 813foreach (CompilerError e in results.Errors) {
System.Management (1)
Instrumentation\Instrumentation.cs (1)
337foreach(CompilerError err in results.Errors)
System.Runtime.Remoting (1)
metadata\metadata.cs (1)
235foreach (CompilerError error in errors)
System.Web (15)
Compilation\AssemblyBuilder.cs (4)
1039foreach (CompilerError error in results.Errors) { 1067foreach (CompilerError error in results.Errors) { 1091CompilerError badBaseClassError = null; 1095CompilerError error = results.Errors[i];
Compilation\AssemblyResolver.cs (1)
331CompilerError error = new CompilerError();
Compilation\BuildManager.cs (1)
203foreach (CompilerError error in results.Errors) {
Compilation\BuildProvidersCompiler.cs (1)
430foreach (CompilerError error in results.Errors) {
Compilation\ClientBuildManagerCallback.cs (1)
28public virtual void ReportCompilerError(CompilerError error) {}
Configuration\BrowserCapabilitiesCodeGenerator.cs (1)
827foreach (CompilerError error in results.Errors) {
ErrorFormatter.cs (2)
1649CompilerError e = _excep.FirstCompileError; 1707foreach (CompilerError e in results.Errors) {
HttpException.cs (4)
374CompilerError e = FirstCompileError; 420internal CompilerError FirstCompileError { 425CompilerError e = null; 427foreach (CompilerError error in _results.Errors) {
System.Web.Mobile (1)
Mobile\MobileErrorInfo.cs (1)
70CompilerError error = errors[0];
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\XomlCompilerError.cs (1)
60internal WorkflowCompilerError(CompilerError error)
AuthoringOM\Compiler\XomlCompilerResults.cs (1)
33foreach (CompilerError error in results.Errors)
System.Xml (4)
System\Xml\Serialization\Compiler.cs (1)
204foreach (CompilerError e in results.Errors) {
System\Xml\Xslt\XslCompiledTransform.cs (3)
177CompilerError error = GetFirstError(); 196private CompilerError GetFirstError() { 197foreach (CompilerError error in compilerResults.Errors) {