AssemblyCollection.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.
Overloads
Item[Int32] |
Gets or sets the AssemblyInfo at the specified index in the AssemblyCollection. |
Item[String] |
Gets the item identified by the specified assembly name. |
Item[Int32]
Gets or sets the AssemblyInfo at the specified index in the AssemblyCollection.
public:
property System::Web::Configuration::AssemblyInfo ^ default[int] { System::Web::Configuration::AssemblyInfo ^ get(int index); void set(int index, System::Web::Configuration::AssemblyInfo ^ value); };
public System.Web.Configuration.AssemblyInfo this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.AssemblyInfo with get, set
Default Public Property Item(index As Integer) As AssemblyInfo
Parameters
- index
- Int32
An integer value specifying a specific AssemblyInfo object within the AssemblyCollection collection.
Property Value
A AssemblyInfo object.
Applies to
Item[String]
Gets the item identified by the specified assembly name.
public:
property System::Web::Configuration::AssemblyInfo ^ default[System::String ^] { System::Web::Configuration::AssemblyInfo ^ get(System::String ^ assemblyName); };
public System.Web.Configuration.AssemblyInfo this[string assemblyName] { get; }
member this.Item(string) : System.Web.Configuration.AssemblyInfo
Default Public ReadOnly Property Item(assemblyName As String) As AssemblyInfo
Parameters
- assemblyName
- String
The name identifying the assembly to retrieve.
Property Value
The item identified by the specified assembly name.