Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents an ObservableCollection that includes the AddRange() operation.
Inheritance Hierarchy
Object
Collection<T>
ObservableCollection<T>
Microsoft.VisualStudio.Language.Intellisense.BulkObservableCollection<T>
Namespace: Microsoft.VisualStudio.Language.Intellisense
Assembly: Microsoft.VisualStudio.Language.Intellisense (in Microsoft.VisualStudio.Language.Intellisense.dll)
Syntax
'Declaration
Public Class BulkObservableCollection(Of T) _
Inherits ObservableCollection(Of T)
public class BulkObservableCollection<T> : ObservableCollection<T>
generic<typename T>
public ref class BulkObservableCollection : public ObservableCollection<T>
type BulkObservableCollection<'T> =
class
inherit ObservableCollection<'T>
end
JScript does not support generic types or methods.
Type Parameters
- T
The type of the collection.
The BulkObservableCollection<T> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() |
BulkObservableCollection<T> | Initializes a new instance of a BulkObservableCollection<T>. |
Top
Properties
Name | Description | |
---|---|---|
![]() |
Count | Gets the number of elements actually contained in the Collection. (Inherited from Collection<T>.) |
![]() |
Item | Gets or sets the element at the specified index. (Inherited from Collection<T>.) |
![]() |
Items | Gets a IList wrapper around the Collection. (Inherited from Collection<T>.) |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Add | Adds an object to the end of the Collection. (Inherited from Collection<T>.) |
![]() |
AddRange | Adds a list of items to the collection without firing an event for each item. |
![]() |
AsReadOnly | Gets a read-only version of the collection. |
![]() |
BeginBulkOperation | Suspends change events on the collection in order to perform a bulk change operation. |
![]() |
BlockReentrancy | Disallows reentrant attempts to change this collection. (Inherited from ObservableCollection<T>.) |
![]() |
CheckReentrancy | Checks for reentrant attempts to change this collection. (Inherited from ObservableCollection<T>.) |
![]() |
Clear | Removes all elements from the Collection. (Inherited from Collection<T>.) |
![]() |
ClearItems | Removes all items from the collection. (Overrides ObservableCollection.ClearItems.) |
![]() |
Contains | Determines whether an element is in the Collection. (Inherited from Collection<T>.) |
![]() |
CopyTo | Copies the entire Collection to a compatible one-dimensional Array, starting at the specified index of the target array. (Inherited from Collection<T>.) |
![]() |
EndBulkOperation | Restores change events on the collection after a bulk change operation has been completed. |
![]() |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() |
GetEnumerator | Returns an enumerator that iterates through the Collection. (Inherited from Collection<T>.) |
![]() |
GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() |
GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() |
IndexOf | Searches for the specified object and returns the zero-based index of the first occurrence within the entire Collection. (Inherited from Collection<T>.) |
![]() |
Insert | Inserts an element into the Collection at the specified index. (Inherited from Collection<T>.) |
![]() |
InsertItem | Inserts an item at the specified index. (Overrides ObservableCollection.InsertItem(Int32, UTP).) |
![]() |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() |
Move | Moves the item at the specified index to a new location in the collection. (Inherited from ObservableCollection<T>.) |
![]() |
MoveItem | Moves the item from one location to another. (Overrides ObservableCollection.MoveItem(Int32, Int32).) |
![]() |
OnCollectionChanged | Raised when the collection has changed. (Overrides ObservableCollection.OnCollectionChanged(NotifyCollectionChangedEventArgs).) |
![]() |
OnPropertyChanged | Raises the PropertyChanged event with the provided arguments. (Inherited from ObservableCollection<T>.) |
![]() |
Remove | Removes the first occurrence of a specific object from the Collection. (Inherited from Collection<T>.) |
![]() |
RemoveAt | Removes the element at the specified index of the Collection. (Inherited from Collection<T>.) |
![]() |
RemoveItem | Removes an item from the collection at the specified location. (Overrides ObservableCollection.RemoveItem(Int32).) |
![]() |
SetItem | Replaces the item at the specified location. (Overrides ObservableCollection.SetItem(Int32, UTP).) |
![]() |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Events
Name | Description | |
---|---|---|
![]() |
CollectionChanged | Occurs when an item is added, removed, changed, moved, or the entire list is refreshed. (Inherited from ObservableCollection<T>.) |
![]() |
PropertyChanged | Occurs when a property value changes. (Inherited from ObservableCollection<T>.) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
![]() ![]() |
System#Collections#IList#Add | Adds an item to the IList. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IList#Contains | Determines whether the IList contains a specific value. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#ICollection#CopyTo | Copies the elements of the ICollection to an Array, starting at a particular Array index. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IEnumerable#GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IList#IndexOf | Determines the index of a specific item in the IList. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IList#Insert | Inserts an item into the IList at the specified index. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IList#IsFixedSize | Gets a value indicating whether the IList has a fixed size. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#Generic#ICollection{T}#IsReadOnly | Gets a value indicating whether the ICollection is read-only. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IList#IsReadOnly | Gets a value indicating whether the IList is read-only. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#ICollection#IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized (thread safe). (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#IList#Item | Gets or sets the element at the specified index. (Inherited from Collection<T>.) |
![]() ![]() |
System#ComponentModel#INotifyPropertyChanged#PropertyChanged | Occurs when a property value changes. (Inherited from ObservableCollection<T>.) |
![]() ![]() |
System#Collections#IList#Remove | Removes the first occurrence of a specific object from the IList. (Inherited from Collection<T>.) |
![]() ![]() |
System#Collections#ICollection#SyncRoot | Gets an object that can be used to synchronize access to the ICollection. (Inherited from Collection<T>.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.