AddressCollection.Item Property (Int32)
Gets the item with the specified index from the collection.
Namespace: Microsoft.Owin.BuilderProperties
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
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 :
index:int -> Address with get, set
Public Property Item (
index As Integer
) As Address
Parameters
index
Type: System.Int32The index.
Property Value
Type: Microsoft.Owin.BuilderProperties.Address
The item with the specified index.
See Also
AddressCollection Structure
Microsoft.Owin.BuilderProperties Namespace
Return to top