Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / Compiler / CompilerErrorCollection.cs / 1305376 / CompilerErrorCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom.Compiler { using System; using System.Collections; using System.Security.Permissions; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [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
- TabControl.cs
- SerializationAttributes.cs
- XmlEncodedRawTextWriter.cs
- Psha1DerivedKeyGenerator.cs
- StsCommunicationException.cs
- StyleXamlTreeBuilder.cs
- CoreSwitches.cs
- UriTemplateHelpers.cs
- SplineKeyFrames.cs
- HwndHost.cs
- GridViewRowEventArgs.cs
- ResourceDescriptionAttribute.cs
- _LocalDataStore.cs
- HttpCapabilitiesBase.cs
- RequestBringIntoViewEventArgs.cs
- SortFieldComparer.cs
- SynchronizedDispatch.cs
- LogPolicy.cs
- FacetValues.cs
- ContextQuery.cs
- ClientData.cs
- RecognitionResult.cs
- PropertyPathConverter.cs
- HttpListenerRequest.cs
- XmlCustomFormatter.cs
- ConfigurationStrings.cs
- ShutDownListener.cs
- EventProviderWriter.cs
- WebPartConnectionsConnectVerb.cs
- TrustLevel.cs
- CurrentChangingEventManager.cs
- GC.cs
- ImageFormatConverter.cs
- Simplifier.cs
- ExpandButtonVisibilityConverter.cs
- PersonalizationState.cs
- BooleanStorage.cs
- NonPrimarySelectionGlyph.cs
- ProxyElement.cs
- CriticalExceptions.cs
- IdentitySection.cs
- LingerOption.cs
- DeferredTextReference.cs
- EntityUtil.cs
- TreeViewImageIndexConverter.cs
- WriteStateInfoBase.cs
- ComponentRenameEvent.cs
- TableLayoutPanelCellPosition.cs
- ImportOptions.cs
- FaultReason.cs
- DataObjectAttribute.cs
- SpecialFolderEnumConverter.cs
- BehaviorEditorPart.cs
- MultipartContentParser.cs
- StringKeyFrameCollection.cs
- ParallelDesigner.cs
- ResourceDefaultValueAttribute.cs
- MetadataCache.cs
- TextTreeExtractElementUndoUnit.cs
- MD5HashHelper.cs
- View.cs
- UInt32.cs
- MediaContextNotificationWindow.cs
- MobileUITypeEditor.cs
- IxmlLineInfo.cs
- ContainerFilterService.cs
- EmptyStringExpandableObjectConverter.cs
- CheckBox.cs
- hresults.cs
- LayoutTableCell.cs
- ScriptingAuthenticationServiceSection.cs
- HostedImpersonationContext.cs
- HttpHandlersSection.cs
- RegistryDataKey.cs
- xml.cs
- HelpEvent.cs
- SqlCacheDependencyDatabase.cs
- UITypeEditors.cs
- ItemsPresenter.cs
- SqlServer2KCompatibilityCheck.cs
- WorkflowItemPresenter.cs
- Popup.cs
- FontStyles.cs
- DrawToolTipEventArgs.cs
- XpsStructure.cs
- Stack.cs
- MatrixTransform3D.cs
- DataRelationPropertyDescriptor.cs
- Utils.cs
- HttpResponseHeader.cs
- TraceSection.cs
- CollectionExtensions.cs
- XmlSchemaObject.cs
- UIPropertyMetadata.cs
- FloaterParagraph.cs
- VectorConverter.cs
- Model3DGroup.cs
- ObfuscateAssemblyAttribute.cs
- MatrixConverter.cs
- DataObjectMethodAttribute.cs