8 [PermissionSet(
SecurityAction.InheritanceDemand, Name =
"FullTrust")]
23 base.List[index] = value;
52 if (disposable !=
null)
88 if (disposable !=
null)
127 return base.List.Add(value);
140 for (
int i = 0; i < value.Length; i++)
156 int count = value.Count;
157 for (
int i = 0; i < count; i++)
169 return base.List.Contains(value);
180 base.List.CopyTo(array, index);
188 return base.List.IndexOf(value);
196 base.List.Insert(index, value);
204 base.List.Remove(value);
The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method th...
void Remove(CompilerError value)
Removes a specific T:System.CodeDom.Compiler.CompilerError from the collection.
bool MoveNext()
Advances the enumerator to the next element of the collection.
Provides the abstract base class for a strongly typed collection.
bool HasWarnings
Gets a value that indicates whether the collection contains warnings.
CompilerErrorCollection()
Initializes a new instance of the T:System.CodeDom.Compiler.CompilerErrorCollection class.
Represents a compiler error or warning.
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
IEnumerator GetEnumerator()
Returns an enumerator that iterates through the T:System.Collections.CollectionBase instance.
bool HasErrors
Gets a value that indicates whether the collection contains errors.
void AddRange(CompilerErrorCollection value)
Adds the contents of the specified compiler error collection to the end of the error collection.
CompilerErrorCollection(CompilerError[] value)
Initializes a new instance of T:System.CodeDom.Compiler.CompilerErrorCollection that contains the spe...
void AddRange(CompilerError[] value)
Copies the elements of an array to the end of the error collection.
SecurityAction
Specifies the security actions that can be performed using declarative security.
void Insert(int index, CompilerError value)
Inserts the specified T:System.CodeDom.Compiler.CompilerError into the collection at the specified in...
object Current
Gets the element in the collection at the current position of the enumerator.
int IndexOf(CompilerError value)
Gets the index of the specified T:System.CodeDom.Compiler.CompilerError object in the collection,...
int Add(CompilerError value)
Adds the specified T:System.CodeDom.Compiler.CompilerError object to the error collection.
bool IsWarning
Gets or sets a value that indicates whether the error is a warning.
Specifies that the class can be serialized.
void CopyTo(CompilerError[] array, int index)
Copies the collection values to a one-dimensional T:System.Array instance at the specified index.
CompilerErrorCollection(CompilerErrorCollection value)
Initializes a new instance of the T:System.CodeDom.Compiler.CompilerErrorCollection class that contai...
void Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resourc...
bool Contains(CompilerError value)
Gets a value that indicates whether the collection contains the specified T:System....
Supports a simple iteration over a non-generic collection.
Represents a collection of T:System.CodeDom.Compiler.CompilerError objects.