Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ParserErrorCollection::Add Method (ParserError^)

 

Adds a value to the collection.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
int Add(
	ParserError^ value
)

Parameters

value
Type: System.Web::ParserError^

The ParserError value to add to the collection.

Return Value

Type: System::Int32

The index of the value within the collection; otherwise, -1 if the value is already in the collection.

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.

The following code example demonstrates how to add a ParserError object to a ParserErrorCollection object.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft