ExpressionBuilder Constructor (String, String)

 

Initializes a new instance of the ExpressionBuilder class.

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

Public Sub New (
	expressionPrefix As String,
	theType As String
)

Parameters

expressionPrefix
Type: System.String

A string that identifies the type of expression to retrieve.

theType
Type: System.String

A string that specifies the expression type.

The following code example demonstrates how to create an ExpressionBuilder object. This code example is part of a larger example provided for the ExpressionBuilderCollection class.

' Create a new ExpressionBuilder reference.
Dim myExpressionBuilder As ExpressionBuilder = _
  New ExpressionBuilder("myCustomExpression", "MyCustomExpressionBuilder")

.NET Framework
Available since 2.0
Return to top
Show: