ParserErrorCollection.Add(ParserError) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a value to the collection.
public:
int Add(System::Web::ParserError ^ value);
public int Add (System.Web.ParserError value);
member this.Add : System.Web.ParserError -> int
Public Function Add (value As ParserError) As Integer
Parameters
- value
- ParserError
The ParserError value to add to the collection.
Returns
The index of the value within the collection; otherwise, -1 if the value is already in the collection.
Examples
The following code example demonstrates how to add a ParserError object to a ParserErrorCollection object.
// Add a ParserError to the collection.
collection.Add(new ParserError("ErrorName", "Path", 1));
' Add a ParserError to the collection.
collection.Add(New ParserError("ErrorName", "Path", 1))
Remarks
Use the Add method to add an existing ParserError object to the collection. You cannot add the same ParserError object to the collection more than once. When you call the Add method using a ParserError object that is already in the collection, the addition fails and -1 is returned.
To add multiple objects to the collection, use the AddRange method.