RoutingSessionInfo.DeselectableRoutes 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 list of IDs of deselectable routes for the session.
public System.Collections.Generic.IList<string> DeselectableRoutes { [Android.Runtime.Register("getDeselectableRoutes", "()Ljava/util/List;", "", ApiSince=30)] get; }
[<get: Android.Runtime.Register("getDeselectableRoutes", "()Ljava/util/List;", "", ApiSince=30)>]
member this.DeselectableRoutes : System.Collections.Generic.IList<string>
Property Value
A possibly empty list of deselectable route ids.
- Attributes
Remarks
Gets the list of IDs of deselectable routes for the session.
Deselectable routes can be removed from the #getSelectedRoutes() selected routes
, so that the routing session stops routing to the newly deselected route, but continues on any remaining selected routes.
Deselectable routes should be a subset of the #getSelectedRoutes() selected routes
, meaning not all of the selected routes might be deselectable. For example, one of the selected routes may be a leader device coordinating group playback, which must always remain selected while the session is active.
Java documentation for android.media.RoutingSessionInfo.getDeselectableRoutes()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.