This documentation is archived and is not being maintained.

ParserErrorCollection::Insert Method

Inserts the specified ParserError object into the collection at the specified index.

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

public:
void Insert(
	int index, 
	ParserError^ value
)

Parameters

index
Type: System::Int32
The index within the collection at which to insert the ParserError.
value
Type: System.Web::ParserError
The ParserError object to insert into the collection.

Use the Insert method to insert an existing ParserError object at a particular index within the collection.

You cannot add the same ParserError object to the collection more than once. When you call the Insert method by using a ParserError that is already in the collection, the insertion fails. Use the Contains method before the insertion to determine whether a particular ParserError is already in the collection. To reposition a ParserError within the collection, you must first remove it by using the Remove method and then insert it at the desired index by using Insert.

The following code example demonstrates how to insert a ParserError object at the specified index in a ParserErrorCollection collection.

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

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: