Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpFileCollection.cs
- DockPattern.cs
- SiteMapNodeItem.cs
- TransformedBitmap.cs
- PipeSecurity.cs
- MapPathBasedVirtualPathProvider.cs
- InvokeWebServiceDesigner.cs
- TraceSection.cs
- XmlSortKeyAccumulator.cs
- Debug.cs
- XmlNamespaceDeclarationsAttribute.cs
- EditorZoneAutoFormat.cs
- TCEAdapterGenerator.cs
- MatrixTransform.cs
- DoubleMinMaxAggregationOperator.cs
- SqlGatherProducedAliases.cs
- OleDbConnectionInternal.cs
- DataBoundControlAdapter.cs
- CollectionChangedEventManager.cs
- _NegotiateClient.cs
- MetadataStore.cs
- Baml2006KeyRecord.cs
- BaseTemplatedMobileComponentEditor.cs
- HttpFileCollectionBase.cs
- MetadataProperty.cs
- ConversionHelper.cs
- Mutex.cs
- PriorityBindingExpression.cs
- AddingNewEventArgs.cs
- ReflectPropertyDescriptor.cs
- Tokenizer.cs
- ParseHttpDate.cs
- OdbcError.cs
- RowUpdatingEventArgs.cs
- CodeCompiler.cs
- MessagePropertyVariants.cs
- ComplexLine.cs
- FragmentQueryProcessor.cs
- ConstraintConverter.cs
- SQLDateTimeStorage.cs
- EncoderExceptionFallback.cs
- Pkcs7Recipient.cs
- XMLDiffLoader.cs
- FixedSOMFixedBlock.cs
- MultipleViewProviderWrapper.cs
- DateTimeFormat.cs
- DesignerEditorPartChrome.cs
- XmlEnumAttribute.cs
- PrimitiveCodeDomSerializer.cs
- RuntimeConfigurationRecord.cs
- HtmlTernaryTree.cs
- xmlformatgeneratorstatics.cs
- XmlReader.cs
- DeclaredTypeElementCollection.cs
- sqlstateclientmanager.cs
- CodeAttachEventStatement.cs
- MemberProjectedSlot.cs
- TypedReference.cs
- TextServicesContext.cs
- ReverseInheritProperty.cs
- Menu.cs
- XAMLParseException.cs
- SafeNativeMethods.cs
- PathFigureCollectionValueSerializer.cs
- ArgIterator.cs
- NumericExpr.cs
- WebEncodingValidatorAttribute.cs
- BindValidator.cs
- IriParsingElement.cs
- DataListAutoFormat.cs
- SiteMap.cs
- ColumnBinding.cs
- Int32AnimationBase.cs
- DiagnosticsConfiguration.cs
- SQLDoubleStorage.cs
- LinqToSqlWrapper.cs
- WmlPhoneCallAdapter.cs
- ISFClipboardData.cs
- CheckBoxPopupAdapter.cs
- AssemblyContextControlItem.cs
- OleCmdHelper.cs
- RegularExpressionValidator.cs
- FilterQuery.cs
- TailCallAnalyzer.cs
- HasCopySemanticsAttribute.cs
- OleServicesContext.cs
- GraphicsState.cs
- CodeStatement.cs
- Currency.cs
- updatecommandorderer.cs
- WebScriptServiceHost.cs
- CssClassPropertyAttribute.cs
- SecureStringHasher.cs
- SqlDataSourceQueryEditorForm.cs
- IncrementalCompileAnalyzer.cs
- CapiNative.cs
- SQLChars.cs
- FrameworkObject.cs
- DataReaderContainer.cs
- BezierSegment.cs