FolderLevelBuildProviderCollection.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 a specific FolderLevelBuildProvider item from the collection.
Overloads
Item[Int32] |
Gets a FolderLevelBuildProvider object at the specified index in the FolderLevelBuildProviderCollection object. |
Item[String] |
Gets the FolderLevelBuildProvider object that has the specified name. |
Item[Int32]
Gets a FolderLevelBuildProvider object at the specified index in the FolderLevelBuildProviderCollection object.
public:
property System::Web::Configuration::FolderLevelBuildProvider ^ default[int] { System::Web::Configuration::FolderLevelBuildProvider ^ get(int index); void set(int index, System::Web::Configuration::FolderLevelBuildProvider ^ value); };
public System.Web.Configuration.FolderLevelBuildProvider this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.FolderLevelBuildProvider with get, set
Default Public Property Item(index As Integer) As FolderLevelBuildProvider
Parameters
- index
- Int32
The index of the FolderLevelBuildProvider object to get.
Property Value
The folder-level build provider object that is located at the specified index.
Applies to
Item[String]
Gets the FolderLevelBuildProvider object that has 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 FolderLevelBuildProvider to get.
Property Value
The folder-level build provider object that has the specified name.