Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / Compiler / CompilerErrorCollection.cs / 1 / CompilerErrorCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom.Compiler { using System; using System.Collections; using System.Security.Permissions; ////// [Serializable()] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class CompilerErrorCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CompilerErrorCollection() { } ////// Initializes a new instance of ///. /// /// public CompilerErrorCollection(CompilerErrorCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CompilerErrorCollection(CompilerError[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CompilerError this[int index] { get { return ((CompilerError)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CompilerError value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CompilerError[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///Copies the elements of an array to the end of the ///. /// public void AddRange(CompilerErrorCollection value) { if (value == null) { throw new ArgumentNullException("value"); } int currentCount = value.Count; for (int i = 0; i < currentCount; i = ((i) + (1))) { this.Add(value[i]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CompilerError value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CompilerError[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public bool HasErrors { get { if (Count > 0) { foreach (CompilerError e in this) { if (!e.IsWarning) { return true; } } } return false; } } ////// Gets or sets /// a value indicating whether the collection contains errors. /// ////// public bool HasWarnings { get { if (Count > 0) { foreach (CompilerError e in this) { if (e.IsWarning) { return true; } } } return false; } } ////// Gets or sets /// a value indicating whether the collection contains warnings. /// ////// public int IndexOf(CompilerError value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CompilerError value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CompilerError value) { List.Remove(value); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapUnknownHeader.cs
- LinqDataSourceSelectEventArgs.cs
- ThemeDirectoryCompiler.cs
- InkCanvas.cs
- ServerIdentity.cs
- MatrixAnimationUsingKeyFrames.cs
- ErrorEventArgs.cs
- InkPresenterAutomationPeer.cs
- DifferencingCollection.cs
- SmtpAuthenticationManager.cs
- Assembly.cs
- DbConvert.cs
- WebDescriptionAttribute.cs
- LiteralText.cs
- CollectionChangeEventArgs.cs
- WindowsStartMenu.cs
- CodeTypeDelegate.cs
- OracleTransaction.cs
- ClientTargetCollection.cs
- ZipFileInfoCollection.cs
- ObjectParameter.cs
- RegexBoyerMoore.cs
- RadioButtonRenderer.cs
- EditorAttribute.cs
- Configuration.cs
- CheckBoxFlatAdapter.cs
- SqlCachedBuffer.cs
- StopStoryboard.cs
- WindowsTooltip.cs
- FormViewCommandEventArgs.cs
- TrustSection.cs
- ComponentEditorPage.cs
- ObjectTypeMapping.cs
- RC2.cs
- ProtocolsConfigurationHandler.cs
- SQLInt64Storage.cs
- XmlSignificantWhitespace.cs
- ToolStripSystemRenderer.cs
- XmlElementAttributes.cs
- GridEntryCollection.cs
- GPRECTF.cs
- ActivityWithResultValueSerializer.cs
- RadioButtonList.cs
- SpoolingTask.cs
- BinaryMethodMessage.cs
- TargetFrameworkUtil.cs
- AutomationEvent.cs
- XmlSchemaComplexContentRestriction.cs
- SqlAliasesReferenced.cs
- QueryOutputWriterV1.cs
- NotCondition.cs
- TextEditorSpelling.cs
- LogLogRecordHeader.cs
- ReadOnlyDictionary.cs
- ValidationErrorCollection.cs
- Propagator.cs
- InputScopeNameConverter.cs
- SQLResource.cs
- ToolStrip.cs
- OutputBuffer.cs
- FreezableDefaultValueFactory.cs
- FontInfo.cs
- Compiler.cs
- TextBoxBase.cs
- WinCategoryAttribute.cs
- XmlSchemaAppInfo.cs
- ResourceReader.cs
- DataObjectEventArgs.cs
- RadioButtonFlatAdapter.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- InputBindingCollection.cs
- CompiledRegexRunner.cs
- StringFunctions.cs
- FontSizeConverter.cs
- CancelEventArgs.cs
- SoapException.cs
- WebPartPersonalization.cs
- DbConnectionPoolGroup.cs
- ChannelManagerService.cs
- ErrorEventArgs.cs
- Pointer.cs
- Set.cs
- AsymmetricKeyExchangeDeformatter.cs
- ResourceReferenceKeyNotFoundException.cs
- SecurityState.cs
- MemberInfoSerializationHolder.cs
- StreamWriter.cs
- SecurityCapabilities.cs
- AutomationElement.cs
- MimeObjectFactory.cs
- TailCallAnalyzer.cs
- RegexCaptureCollection.cs
- CallInfo.cs
- TemplateControlCodeDomTreeGenerator.cs
- DropDownButton.cs
- TemplateKey.cs
- DictionaryGlobals.cs
- XmlDesigner.cs
- EmptyTextWriter.cs
- QueryContinueDragEvent.cs