IBindableIterator.Current Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.