Code:
/ 4.0 / 4.0 / 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 /// . // // // ----------------------------------------------------------------------------- // 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
- GlobalEventManager.cs
- XmlILAnnotation.cs
- ResourceDefaultValueAttribute.cs
- AbsoluteQuery.cs
- XmlSerializer.cs
- CurrentTimeZone.cs
- PriorityBinding.cs
- CompressionTransform.cs
- SignatureToken.cs
- WebPartMovingEventArgs.cs
- LineServices.cs
- ButtonColumn.cs
- SafeArrayRankMismatchException.cs
- MultipartContentParser.cs
- ModelPropertyImpl.cs
- shaperfactoryquerycacheentry.cs
- IfAction.cs
- Relationship.cs
- SerializationObjectManager.cs
- XmlnsDictionary.cs
- Int32Storage.cs
- DataTableReaderListener.cs
- ActivitySurrogateSelector.cs
- FollowerQueueCreator.cs
- FormsAuthenticationUserCollection.cs
- OleDbDataReader.cs
- TaskForm.cs
- ContainerVisual.cs
- UserControlParser.cs
- PersistenceException.cs
- LockCookie.cs
- BCLDebug.cs
- ObjectDataProvider.cs
- NativeStructs.cs
- AssociationSetMetadata.cs
- NumberAction.cs
- XmlAttributeOverrides.cs
- CodeTypeMember.cs
- ConstraintManager.cs
- DrawingBrush.cs
- DataGridViewMethods.cs
- DefaultValueTypeConverter.cs
- LightweightCodeGenerator.cs
- WebChannelFactory.cs
- CngKeyCreationParameters.cs
- Debug.cs
- OrderByBuilder.cs
- ResourceManager.cs
- DialogResultConverter.cs
- TypeTypeConverter.cs
- TypeBuilderInstantiation.cs
- PresentationSource.cs
- StreamedFramingRequestChannel.cs
- TriggerBase.cs
- RSAPKCS1SignatureFormatter.cs
- MetadataPropertyCollection.cs
- ValidatorCompatibilityHelper.cs
- FilteredReadOnlyMetadataCollection.cs
- SettingsPropertyValue.cs
- OSEnvironmentHelper.cs
- SiteMapNodeCollection.cs
- AppLevelCompilationSectionCache.cs
- RawKeyboardInputReport.cs
- Peer.cs
- BaseCollection.cs
- TypeCodeDomSerializer.cs
- ResourcesGenerator.cs
- InfoCardTraceRecord.cs
- PassportAuthenticationModule.cs
- PatternMatcher.cs
- TraceInternal.cs
- WmpBitmapEncoder.cs
- HttpHandler.cs
- Completion.cs
- IdleTimeoutMonitor.cs
- unsafenativemethodstextservices.cs
- MemberPathMap.cs
- UserNameSecurityTokenParameters.cs
- _ProxyChain.cs
- ErrorItem.cs
- ObservableCollection.cs
- LineBreakRecord.cs
- ObjectListSelectEventArgs.cs
- DisplayInformation.cs
- EntityDataSourceReferenceGroup.cs
- CheckBoxDesigner.cs
- TabItem.cs
- HebrewNumber.cs
- SQlBooleanStorage.cs
- RSACryptoServiceProvider.cs
- MULTI_QI.cs
- SmiEventSink_Default.cs
- HealthMonitoringSectionHelper.cs
- ThreadPoolTaskScheduler.cs
- DateTimeOffset.cs
- StateWorkerRequest.cs
- XmlSchemaIdentityConstraint.cs
- LiteralControl.cs
- KeyBinding.cs
- TransactionOptions.cs