ParserErrorCollection.Insert Method

Note: This method is new in the .NET Framework version 2.0.

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
)
public void Insert (
	int index, 
	ParserError value
)
public function Insert (
	index : int, 
	value : ParserError
)

Parameters

index

The index within the collection at which to insert the ParserError.

value

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 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

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

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: