IObservableVector<T> interface

Expand
0 out of 1 rated this helpful - Rate this topic

IObservableVector<T> interface

[This documentation is preliminary and is subject to change.]

Notifies listeners of changes to the vector.

Syntax


public interface IObservableVector<T> : IList<T>, 
    IEnumerable<T>

Attributes

GuidAttribute("5917eb53-50b4-4a0d-b309-65862b3f1dbc")
VersionAttribute(NTDDI_WIN8)

Type parameters

T

The type of the values in the vector.

Members

The IObservableVector interface has these types of members:

Events

The IObservableVector interface has these events.

EventDescription
VectorChanged Occurs when the vector changes.

 

Remarks

The IObservableVector<T> interface enables clients to register for notification events for IVector<T> objects. For example, use notification events when you need to keep two data structures synchronized. In this scenario, you can use the IObservableVector<T> interface to receive notification of changes, so that the associated data structure can be updated.

Requirements

Minimum supported client

Windows 8 Release Preview

Minimum supported server

Windows Server 2012

Namespace

Windows.Foundation.Collections
Windows::Foundation::Collections [C++]

Metadata

Windows.winmd

DLL

Windows.Foundation.dll

 

 

Build date: 5/22/2012

Did you find this helpful?
(1500 characters remaining)
Community Additions ADD