Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- XpsException.cs
- SmtpAuthenticationManager.cs
- Version.cs
- DirectoryLocalQuery.cs
- PropertyGrid.cs
- SurrogateSelector.cs
- ValidationError.cs
- _UriSyntax.cs
- GeneralTransform3DTo2DTo3D.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- TypedReference.cs
- ServicesUtilities.cs
- Crc32Helper.cs
- SqlCommand.cs
- DiscoveryDocumentSerializer.cs
- ContentFilePart.cs
- SwitchLevelAttribute.cs
- QueryExpression.cs
- TrackBarRenderer.cs
- BoolLiteral.cs
- MaterializeFromAtom.cs
- CodeSubDirectoriesCollection.cs
- SByteStorage.cs
- ResXFileRef.cs
- FeatureSupport.cs
- OptimalBreakSession.cs
- ServicePointManagerElement.cs
- SocketElement.cs
- JpegBitmapEncoder.cs
- TextBoxView.cs
- RequestTimeoutManager.cs
- METAHEADER.cs
- FileAuthorizationModule.cs
- Mapping.cs
- SHA512CryptoServiceProvider.cs
- AlignmentXValidation.cs
- RegisteredExpandoAttribute.cs
- UnmanagedMemoryStream.cs
- HiddenFieldPageStatePersister.cs
- VSDExceptions.cs
- WebReferencesBuildProvider.cs
- serverconfig.cs
- PaintValueEventArgs.cs
- PointAnimationUsingKeyFrames.cs
- BitmapImage.cs
- FileDataSourceCache.cs
- PolyLineSegment.cs
- WebPartConnectionsCancelVerb.cs
- PrintPreviewGraphics.cs
- mansign.cs
- Accessors.cs
- SiteMapDataSource.cs
- TableFieldsEditor.cs
- AffineTransform3D.cs
- Scripts.cs
- ProxySimple.cs
- TokenFactoryFactory.cs
- DataGridViewAccessibleObject.cs
- ParsedAttributeCollection.cs
- SafeProcessHandle.cs
- Module.cs
- SQLInt64.cs
- ClientProxyGenerator.cs
- GenericEnumerator.cs
- Highlights.cs
- UnauthorizedWebPart.cs
- SafeCryptoHandles.cs
- ModifiableIteratorCollection.cs
- CapabilitiesRule.cs
- GridViewColumnCollectionChangedEventArgs.cs
- SchemaNotation.cs
- MetaModel.cs
- KnownAssemblyEntry.cs
- DefaultTextStoreTextComposition.cs
- SvcMapFileLoader.cs
- AddInToken.cs
- PageThemeParser.cs
- BamlRecordReader.cs
- NativeMethods.cs
- TrustSection.cs
- CriticalHandle.cs
- UserControlParser.cs
- AnyAllSearchOperator.cs
- TextTreeFixupNode.cs
- ProxyFragment.cs
- DataTableClearEvent.cs
- SmtpNtlmAuthenticationModule.cs
- SqlDataReader.cs
- AdornerPresentationContext.cs
- LocationSectionRecord.cs
- VirtualizingStackPanel.cs
- GridViewDesigner.cs
- LocatorGroup.cs
- NotSupportedException.cs
- GridItem.cs
- HandlerFactoryCache.cs
- AlignmentXValidation.cs
- IisTraceListener.cs
- SizeAnimation.cs
- PropertyGridDesigner.cs