Name

CounterCreationDataCollection

Synopsis

This class is a strongly-typed collection of CounterCreationData objects. Use Add() and AddRange() to add single or multiple values respectively to the end of the collection. Insert() allows you to add an item at any position in the collection. Remove() and RemoveAt() allow you to remove items from the collection.

Public Class CounterCreationDataCollection : Inherits CollectionBase
' Public Constructors
   Public Sub New() 
   Public Sub New( ByVal value As CounterCreationData()) 
   Public Sub New(
        ByVal value As CounterCreationDataCollection) 
' Public Instance Properties
   Public Default Property Item(
        ByVal index As Integer) As CounterCreationData  
' Public Instance Methods
   Public Function Add(
        ByVal value As CounterCreationData) As Integer  
   Public Sub AddRange( ByVal value As CounterCreationData()) 
   Public Sub AddRange(
        ByVal value As CounterCreationDataCollection) 
   Public Function Contains(
        ByVal value As CounterCreationData) As Boolean  
   Public Sub CopyTo(ByVal array As CounterCreationData(), 
        ByVal index As Integer) 
   Public Function IndexOf(
        ByVal value As CounterCreationData) As Integer  
   Public Sub Insert(ByVal index As Integer, 
        ByVal value As CounterCreationData) 
   Overridable Public Sub Remove(
        ByVal value As CounterCreationData) 
' Protected Instance Methods
   Overrides Protected Sub OnInsert(ByVal index As Integer, 
        ByVal value As Object) 
End Class

Hierarchy

System.Object System.Collections.CollectionBase(System.Collections.IList, System.Collections.ICollection ...

Get VB.NET Core Classes in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.