BuildProviderCollection.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 the specified BuildProvider collection item.
Overloads
Item[Int32] |
Gets the BuildProvider object at the specified index of the collection. |
Item[String] |
Gets the BuildProvider collection element based on the specified name. |
Item[Int32]
Gets the BuildProvider object at the specified index of the collection.
public:
property System::Web::Configuration::BuildProvider ^ default[int] { System::Web::Configuration::BuildProvider ^ get(int index); void set(int index, System::Web::Configuration::BuildProvider ^ value); };
public System.Web.Configuration.BuildProvider this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.BuildProvider with get, set
Default Public Property Item(index As Integer) As BuildProvider
Parameters
- index
- Int32
An integer value specifying a particular BuildProvider object within the BuildProviderCollection.
Property Value
A BuildProvider object.
Applies to
Item[String]
Gets the BuildProvider collection element based on the specified name.
public:
property System::Web::Configuration::BuildProvider ^ default[System::String ^] { System::Web::Configuration::BuildProvider ^ get(System::String ^ name); };
public System.Web.Configuration.BuildProvider this[string name] { get; }
member this.Item(string) : System.Web.Configuration.BuildProvider
Default Public ReadOnly Property Item(name As String) As BuildProvider
Parameters
- name
- String
The name of the BuildProvider object to return from the collection.
Property Value
A BuildProvider object.