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;
///
///
/// A collection that stores objects.
///
///
[Serializable()]
[PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")]
public class CompilerErrorCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CompilerErrorCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CompilerErrorCollection(CompilerErrorCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CompilerErrorCollection(CompilerError[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CompilerError this[int index] {
get {
return ((CompilerError)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CompilerError value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of 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]);
}
}
///
///
/// Adds the contents of another to the end of the collection.
///
///
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]);
}
}
///
/// Gets a value indicating whether the
/// contains the specified .
///
public bool Contains(CompilerError value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CompilerError[] array, int index) {
List.CopyTo(array, index);
}
///
///
/// Gets or sets
/// a value indicating whether the collection contains errors.
///
///
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 warnings.
///
///
public bool HasWarnings {
get {
if (Count > 0) {
foreach (CompilerError e in this) {
if (e.IsWarning) {
return true;
}
}
}
return false;
}
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CompilerError value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CompilerError value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CompilerError value) {
List.Remove(value);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// -----------------------------------------------------------------------------
//
namespace System.CodeDom.Compiler {
using System;
using System.Collections;
using System.Security.Permissions;
///
///
/// A collection that stores objects.
///
///
[Serializable()]
[PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")]
public class CompilerErrorCollection : CollectionBase {
///
///
/// Initializes a new instance of .
///
///
public CompilerErrorCollection() {
}
///
///
/// Initializes a new instance of based on another .
///
///
public CompilerErrorCollection(CompilerErrorCollection value) {
this.AddRange(value);
}
///
///
/// Initializes a new instance of containing any array of objects.
///
///
public CompilerErrorCollection(CompilerError[] value) {
this.AddRange(value);
}
///
/// Represents the entry at the specified index of the .
///
public CompilerError this[int index] {
get {
return ((CompilerError)(List[index]));
}
set {
List[index] = value;
}
}
///
/// Adds a with the specified value to the
/// .
///
public int Add(CompilerError value) {
return List.Add(value);
}
///
/// Copies the elements of an array to the end of 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]);
}
}
///
///
/// Adds the contents of another to the end of the collection.
///
///
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]);
}
}
///
/// Gets a value indicating whether the
/// contains the specified .
///
public bool Contains(CompilerError value) {
return List.Contains(value);
}
///
/// Copies the values to a one-dimensional instance at the
/// specified index.
///
public void CopyTo(CompilerError[] array, int index) {
List.CopyTo(array, index);
}
///
///
/// Gets or sets
/// a value indicating whether the collection contains errors.
///
///
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 warnings.
///
///
public bool HasWarnings {
get {
if (Count > 0) {
foreach (CompilerError e in this) {
if (e.IsWarning) {
return true;
}
}
}
return false;
}
}
///
/// Returns the index of a in
/// the .
///
public int IndexOf(CompilerError value) {
return List.IndexOf(value);
}
///
/// Inserts a into the at the specified index.
///
public void Insert(int index, CompilerError value) {
List.Insert(index, value);
}
///
/// Removes a specific from the
/// .
///
public void Remove(CompilerError value) {
List.Remove(value);
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReadOnlyHierarchicalDataSourceView.cs
- ConfigurationElement.cs
- SqlDataReader.cs
- HitTestParameters3D.cs
- OutputCache.cs
- DiscoveryReference.cs
- ClientConfigPaths.cs
- ProxyWebPartManager.cs
- ProfileModule.cs
- SQLDateTime.cs
- WebPartZoneCollection.cs
- SecurityTokenReferenceStyle.cs
- ScrollBarRenderer.cs
- ReflectionTypeLoadException.cs
- HttpListenerRequest.cs
- MatrixTransform.cs
- WinEventTracker.cs
- DataContract.cs
- XPathDocument.cs
- PropertyMapper.cs
- TextEndOfLine.cs
- ClassHandlersStore.cs
- TextDecoration.cs
- EndpointConfigContainer.cs
- StreamingContext.cs
- RecognitionResult.cs
- Int32Storage.cs
- TextRunProperties.cs
- SelectorItemAutomationPeer.cs
- EventLogSession.cs
- UnitControl.cs
- AsymmetricSignatureFormatter.cs
- TCEAdapterGenerator.cs
- CodeArrayIndexerExpression.cs
- FrameworkElementFactory.cs
- ResizeGrip.cs
- DataGridRelationshipRow.cs
- MobileSysDescriptionAttribute.cs
- COM2ComponentEditor.cs
- TransformerInfo.cs
- securestring.cs
- DataControlButton.cs
- SimpleApplicationHost.cs
- _OSSOCK.cs
- MultiDataTrigger.cs
- HttpHeaderCollection.cs
- ResourceType.cs
- SettingsPropertyIsReadOnlyException.cs
- FeatureSupport.cs
- IPHostEntry.cs
- BoolExpr.cs
- ProxyElement.cs
- Opcode.cs
- WebBrowserNavigatingEventHandler.cs
- RequestCacheEntry.cs
- FileFormatException.cs
- UnitySerializationHolder.cs
- ResourceDictionaryCollection.cs
- TextHidden.cs
- StreamReader.cs
- SafeRightsManagementPubHandle.cs
- HostDesigntimeLicenseContext.cs
- EventTask.cs
- NavigatorOutput.cs
- SaveFileDialog.cs
- AssemblyResourceLoader.cs
- DataGridTable.cs
- ContentElement.cs
- CallContext.cs
- MethodToken.cs
- CompositeActivityCodeGenerator.cs
- RSACryptoServiceProvider.cs
- DataFieldConverter.cs
- InstanceCreationEditor.cs
- EmptyQuery.cs
- SystemWebCachingSectionGroup.cs
- QilReplaceVisitor.cs
- dataprotectionpermission.cs
- safemediahandle.cs
- ContextBase.cs
- ComEventsSink.cs
- ContextStaticAttribute.cs
- Model3DGroup.cs
- DataViewSettingCollection.cs
- SimpleMailWebEventProvider.cs
- MenuItemBindingCollection.cs
- DebuggerAttributes.cs
- XmlSiteMapProvider.cs
- PhysicalAddress.cs
- OperatingSystem.cs
- SqlProfileProvider.cs
- ProvideValueServiceProvider.cs
- ExpressionBuilderCollection.cs
- ActivityDefaults.cs
- DBCSCodePageEncoding.cs
- AnimationLayer.cs
- JournalNavigationScope.cs
- HGlobalSafeHandle.cs
- MetaDataInfo.cs
- DbProviderFactory.cs