1 instantiation of CompilerErrorCollection
System (1)
compmod\system\codedom\compiler\CompilerResults.cs (1)
33private CompilerErrorCollection errors = new CompilerErrorCollection();
27 references to CompilerErrorCollection
System (16)
compmod\system\codedom\compiler\CompilerErrorCollection.cs (14)
26/// Initializes a new instance of <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/>. 34/// Initializes a new instance of <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> based on another <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/>. 37public CompilerErrorCollection(CompilerErrorCollection value) { 43/// Initializes a new instance of <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> containing any array of <see cref='System.CodeDom.Compiler.CompilerError'/> objects. 64/// <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> .</para> 71/// <para>Copies the elements of an array to the end of the <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/>.</para> 84/// Adds the contents of another <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> to the end of the collection. 87public void AddRange(CompilerErrorCollection value) { 99/// <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> contains the specified <see cref='System.CodeDom.Compiler.CompilerError'/>.</para> 106/// <para>Copies the <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the 153/// the <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> .</para> 160/// <para>Inserts a <see cref='System.CodeDom.Compiler.CompilerError'/> into the <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> at the specified index.</para> 168/// <see cref='System.CodeDom.Compiler.CompilerErrorCollection'/> .</para>
compmod\system\codedom\compiler\CompilerResults.cs (2)
33private CompilerErrorCollection errors = new CompilerErrorCollection(); 126public CompilerErrorCollection Errors {
System.Activities (1)
System\Activities\ExpressionParser\SourceExpressionException.cs (1)
35public SourceExpressionException(string message, CompilerErrorCollection errors)
System.Data.Entity.Design (3)
System\Data\Entity\Design\EntityCodeGenerator.cs (3)
614_errors = type.GetProperty("Errors", flags, null, typeof(CompilerErrorCollection), new Type[0], null); 621internal CompilerErrorCollection Errors 623get { return (CompilerErrorCollection)_errors.GetValue(_instance, null); }
System.Data.SqlXml (2)
System\Xml\Xsl\Xslt\Compiler.cs (1)
310CompilerErrorCollection errorColl = this.CompilerResults.Errors;
System\Xml\Xsl\Xslt\Scripts.cs (1)
197CompilerErrorCollection allErrors = compiler.CompilerResults.Errors;
System.Runtime.Remoting (1)
metadata\metadata.cs (1)
232CompilerErrorCollection errors = results.Errors;
System.Web.Mobile (1)
Mobile\MobileErrorInfo.cs (1)
66CompilerErrorCollection errors = compileException.Results.Errors;
System.Xml (3)
System\Xml\Xslt\XslCompiledTransform.cs (3)
89internal CompilerErrorCollection Errors { 219public static CompilerErrorCollection CompileToType(XmlReader stylesheet, XsltSettings settings, XmlResolver stylesheetResolver, bool debug, TypeBuilder typeBuilder, string scriptAssemblyPath) { 236CompilerErrorCollection errors = new Compiler(settings, debug, scriptAssemblyPath).Compile(stylesheet, stylesheetResolver, out qil).Errors;