IBindableIterator.Current Property

Definition

Gets the current item in the collection.

public:
 property Platform::Object ^ Current { Platform::Object ^ get(); };
IInspectable Current();
public object Current { get; }
var object = iBindableIterator.current;
Public ReadOnly Property Current As Object

Property Value

Object

Platform::Object

IInspectable

The current item in the collection.

Remarks

This interface supports the creation of data bindable collections in C++. When programming with .NET, you should use ObservableCollection(Of T) or implement IList and INotifyCollectionChanged.

Applies to

See also