ExpressionBuilderCollection.Remove Method (String)

 

Removes an ExpressionBuilder object from the ExpressionBuilderCollection collection.

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

Public Sub Remove (
	name As String
)

Parameters

name
Type: System.String

A string value specifying the ExpressionBuilder reference.

If the assembly does not exist in the collection, the statement is ignored.

The following code example demonstrates how to use the Remove method. This code example is part of a larger example provided for the ExpressionBuilderCollection class.

' Remove an ExpressionBuilder.
configSection.ExpressionBuilders.RemoveAt _
 (configSection.ExpressionBuilders.Count - 1)

.NET Framework
Available since 2.0
Return to top
Show: