ExpressionBuilderCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the specified ExpressionBuilder object.
Overloads
Item[Int32] |
Gets or sets the ExpressionBuilder at the specified index in the ExpressionBuilderCollection collection. |
Item[String] |
Gets the ExpressionBuilder object with the specified name. |
Remarks
Item[Int32]
Gets or sets the ExpressionBuilder at the specified index in the ExpressionBuilderCollection collection.
public:
property System::Web::Configuration::ExpressionBuilder ^ default[int] { System::Web::Configuration::ExpressionBuilder ^ get(int index); void set(int index, System::Web::Configuration::ExpressionBuilder ^ value); };
public System.Web.Configuration.ExpressionBuilder this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.ExpressionBuilder with get, set
Default Public Property Item(index As Integer) As ExpressionBuilder
Parameters
- index
- Int32
An integer value specifying an ExpressionBuilder object within the ExpressionBuilderCollection collection.
Property Value
The ExpressionBuilder object at the specified index or null
if there is no object at that index.
Applies to
Item[String]
Gets the ExpressionBuilder object with the specified name.
public:
property System::Web::Configuration::ExpressionBuilder ^ default[System::String ^] { System::Web::Configuration::ExpressionBuilder ^ get(System::String ^ name); };
public System.Web.Configuration.ExpressionBuilder this[string name] { get; }
member this.Item(string) : System.Web.Configuration.ExpressionBuilder
Default Public ReadOnly Property Item(name As String) As ExpressionBuilder
Parameters
- name
- String
The name of an ExpressionBuilder object in the ExpressionBuilderCollection collection.
Property Value
The ExpressionBuilder or null
if there is no object with that name in the collection.