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.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: