Show / Hide Table of Contents

Interface IExtendedAssociateCollection

Namespace: MESL.SqlRace.Domain.Collections
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IExtendedAssociateCollection : ICollection<ExtendedAssociate>, IEnumerable<ExtendedAssociate>, IEnumerable

Properties

Item[Int32]

Declaration
ExtendedAssociate this[int index] { get; set; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
ExtendedAssociate

Methods

AsNewList()

Returns a copy of the contents of the collection

Declaration
IList<ExtendedAssociate> AsNewList()
Returns
Type Description
System.Collections.Generic.IList<ExtendedAssociate>

IndexOf(ExtendedAssociate)

Declaration
int IndexOf(ExtendedAssociate item)
Parameters
Type Name Description
ExtendedAssociate item
Returns
Type Description
System.Int32

Insert(Int32, ExtendedAssociate)

Declaration
void Insert(int index, ExtendedAssociate item)
Parameters
Type Name Description
System.Int32 index
ExtendedAssociate item

RemoveAt(Int32)

Declaration
void RemoveAt(int index)
Parameters
Type Name Description
System.Int32 index

Events

ItemAdded

Event fired when an item is added to the

Declaration
event EventHandler<ItemEventArgs> ItemAdded
Event Type
Type Description
System.EventHandler<ItemEventArgs>

ItemRemoved

Event Fired when an item is removed from the ExtendedAssociate collection

Declaration
event EventHandler<ItemEventArgs> ItemRemoved
Event Type
Type Description
System.EventHandler<ItemEventArgs>
In This Article
  • Properties
    • Item[Int32]
  • Methods
    • AsNewList()
    • IndexOf(ExtendedAssociate)
    • Insert(Int32, ExtendedAssociate)
    • RemoveAt(Int32)
  • Events
    • ItemAdded
    • ItemRemoved
Back to top Generated by DocFX