RestrictionsManager.ConvertRestrictionsToBundle Method
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.
Converts a list of restrictions to the corresponding bundle, using the following mapping:
<table>
<tr><th>RestrictionEntry</th><th>Bundle</th></tr>
<tr><td>RestrictionEntry#TYPE_BOOLEAN</td><td>Bundle#putBoolean</td></tr>
<tr><td>RestrictionEntry#TYPE_CHOICE,
RestrictionEntry#TYPE_MULTI_SELECT</td>
<td>Bundle#putStringArray</td></tr>
<tr><td>RestrictionEntry#TYPE_INTEGER</td><td>Bundle#putInt</td></tr>
<tr><td>RestrictionEntry#TYPE_STRING</td><td>Bundle#putString</td></tr>
<tr><td>RestrictionEntry#TYPE_BUNDLE</td><td>Bundle#putBundle</td></tr>
<tr><td>RestrictionEntry#TYPE_BUNDLE_ARRAY</td>
<td>Bundle#putParcelableArray</td></tr>
</table>
[Android.Runtime.Register("convertRestrictionsToBundle", "(Ljava/util/List;)Landroid/os/Bundle;", "", ApiSince=23)]
public static Android.OS.Bundle? ConvertRestrictionsToBundle(System.Collections.Generic.IList<Android.Content.RestrictionEntry>? entries);
[<Android.Runtime.Register("convertRestrictionsToBundle", "(Ljava/util/List;)Landroid/os/Bundle;", "", ApiSince=23)>]
static member ConvertRestrictionsToBundle : System.Collections.Generic.IList<Android.Content.RestrictionEntry> -> Android.OS.Bundle
Parameters
- entries
- IList<RestrictionEntry>
list of restrictions
Returns
Converts a list of restrictions to the corresponding bundle, using the following mapping: RestrictionEntry Bundle RestrictionEntry.TYPE_BOOLEAN Bundle.putBoolean RestrictionEntry.TYPE_CHOICE , RestrictionEntry.TYPE_MULTI_SELECT Bundle.putStringArray RestrictionEntry.TYPE_INTEGER Bundle.putInt RestrictionEntry.TYPE_STRING Bundle.putString RestrictionEntry.TYPE_BUNDLE Bundle.putBundle RestrictionEntry.TYPE_BUNDLE_ARRAY Bundle.putParcelableArray
- Attributes
Remarks
Converts a list of restrictions to the corresponding bundle, using the following mapping: <table> <tr><th>RestrictionEntry</th><th>Bundle</th></tr> <tr><td>RestrictionEntry#TYPE_BOOLEAN</td><td>Bundle#putBoolean</td></tr> <tr><td>RestrictionEntry#TYPE_CHOICE, RestrictionEntry#TYPE_MULTI_SELECT</td> <td>Bundle#putStringArray</td></tr> <tr><td>RestrictionEntry#TYPE_INTEGER</td><td>Bundle#putInt</td></tr> <tr><td>RestrictionEntry#TYPE_STRING</td><td>Bundle#putString</td></tr> <tr><td>RestrictionEntry#TYPE_BUNDLE</td><td>Bundle#putBundle</td></tr> <tr><td>RestrictionEntry#TYPE_BUNDLE_ARRAY</td> <td>Bundle#putParcelableArray</td></tr> </table>
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.