Code:
/ FX-1434 / FX-1434 / 1.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
- ExpressionBuilderCollection.cs
- FileDialogCustomPlacesCollection.cs
- SharedPerformanceCounter.cs
- ArraySortHelper.cs
- PersonalizationProviderCollection.cs
- DataGridViewRowsRemovedEventArgs.cs
- EntityDataSourceEntitySetNameItem.cs
- Help.cs
- PropertySourceInfo.cs
- WebPartVerbCollection.cs
- UniformGrid.cs
- PathGradientBrush.cs
- TextDecorationCollection.cs
- XmlAttributeAttribute.cs
- NativeMethods.cs
- XMLSyntaxException.cs
- hebrewshape.cs
- ChangeTracker.cs
- NonClientArea.cs
- SqlSelectClauseBuilder.cs
- DataQuery.cs
- SettingsPropertyCollection.cs
- TransactionTraceIdentifier.cs
- ObjectContextServiceProvider.cs
- FormViewDeleteEventArgs.cs
- PermissionToken.cs
- __Error.cs
- RootBrowserWindowAutomationPeer.cs
- RequestUriProcessor.cs
- WindowsEditBoxRange.cs
- JoinTreeNode.cs
- CallbackWrapper.cs
- CodeTypeParameter.cs
- CodeNamespaceCollection.cs
- XmlValueConverter.cs
- TextBox.cs
- DetailsViewModeEventArgs.cs
- XmlWhitespace.cs
- MetabaseServerConfig.cs
- DispatcherSynchronizationContext.cs
- ScriptControlDescriptor.cs
- HyperLinkField.cs
- XmlIgnoreAttribute.cs
- SqlDataSourceStatusEventArgs.cs
- FileLogRecord.cs
- DbProviderServices.cs
- Accessible.cs
- TogglePatternIdentifiers.cs
- ProcessDesigner.cs
- ForEachAction.cs
- ToolStripSplitStackLayout.cs
- StopStoryboard.cs
- ReceiveSecurityHeaderEntry.cs
- Pen.cs
- KeyGesture.cs
- ListViewUpdateEventArgs.cs
- UICuesEvent.cs
- DecimalSumAggregationOperator.cs
- HandledMouseEvent.cs
- FeatureAttribute.cs
- RoutedEventArgs.cs
- SubpageParagraph.cs
- TypeBuilderInstantiation.cs
- ScriptControlDescriptor.cs
- Evaluator.cs
- DodSequenceMerge.cs
- EditingCommands.cs
- DataRow.cs
- Crc32.cs
- RegionData.cs
- IntSecurity.cs
- ParamArrayAttribute.cs
- RegisterInfo.cs
- ResetableIterator.cs
- OdbcCommandBuilder.cs
- CommandValueSerializer.cs
- DrawingState.cs
- LinearKeyFrames.cs
- HijriCalendar.cs
- ActivityCompletionCallbackWrapper.cs
- WebServiceMethodData.cs
- AdornerLayer.cs
- SQLInt16Storage.cs
- StreamingContext.cs
- DataObjectFieldAttribute.cs
- ConfigurationFileMap.cs
- Visual3D.cs
- UpdateCompiler.cs
- StylusSystemGestureEventArgs.cs
- MasterPageParser.cs
- ComponentEditorForm.cs
- FormatStringEditor.cs
- SHA1Cng.cs
- ScriptReferenceBase.cs
- TemplateContainer.cs
- ValueHandle.cs
- ImageKeyConverter.cs
- ProtocolReflector.cs
- DataObjectCopyingEventArgs.cs
- SafeHandle.cs