Click or drag to resize

SliderSlides Property

Currently available slides.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public ReadOnlyCollection<SliderSlide> Slides { get; }

Property Value

Type: ReadOnlyCollectionSliderSlide
Remarks
This property is useful if client does not want to handle SlidesAdded and SlidesRemoved events when the slider feature is not displayed to the user. In such case this property can be used to obtain the up-to-date collection of slides where the slider UI is about to be displayed. To receive further slide updates, the client should register event handlers on both events afterwards. The client should obtain current collection and register event handlers in a single method invoked on the same dispatcher as passed to the Client object. This guarantees that no slides are duplicated or missed due to race conditions.
See Also