AddressCollection.Item Property

Gets the item with the specified index from the collection.

Namespace:  Microsoft.Owin.BuilderProperties
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Public Default Property Item ( _
    index As Integer _
) As Address 
    Get 
    Set
'Usage
Dim instance As AddressCollection 
Dim index As Integer 
Dim value As Address 

value = instance(index)

instance(index) = value
public Address this[
    int index
] { get; set; }
public:
property Address default[int index] {
    Address get (int index);
    void set (int index, Address value);
}
member Item : Address with get, set
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

Property Value

Type: Microsoft.Owin.BuilderProperties.Address
The item with the specified index.

See Also

Reference

AddressCollection Structure

Microsoft.Owin.BuilderProperties Namespace