Show / Hide Table of Contents

    Class PackageFilter

    Definition

    Namespace:
    Tizen.Applications
    Assembly:
    Tizen.Applications.PackageManager.dll
    API Level:
    3

    This class is a parameter of the PackageManager::GetPackages method.

    public class PackageFilter
    Inheritance
    Object
    PackageFilter

    Constructors

    View Source

    PackageFilter()

    The default constructor with an empty filter list. All the installed applications will satisfy this filter unless updated with more specific filters.

    Declaration
    public PackageFilter()
    API Level: 3
    View Source

    PackageFilter(IDictionary<String, Boolean>)

    The constructor with specific filters. Using this will filter out the installed packages which do not meet the filter criteria.

    Declaration
    public PackageFilter(IDictionary<string, bool> filter)
    Parameters
    Type Name Description
    IDictionary<String, Boolean> filter

    Package filters.

    API Level: 3
    View Source

    PackageFilter(IDictionary<String, Boolean>, IDictionary<String, String>)

    The constructor with specific filters. Using this will filter out the installed packages which do not meet the filter criteria.

    Declaration
    public PackageFilter(IDictionary<string, bool> filter, IDictionary<string, string> stringFilter)
    Parameters
    Type Name Description
    IDictionary<String, Boolean> filter

    Package filters.

    IDictionary<String, String> stringFilter

    Package filters using string values.

    API Level: 9
    View Source

    PackageFilter(IDictionary<String, String>)

    The constructor with specific filters. Using this will filter out the installed packages which do not meet the filter criteria.

    Declaration
    public PackageFilter(IDictionary<string, string> stringFilter)
    Parameters
    Type Name Description
    IDictionary<String, String> stringFilter

    Package filters using string values.

    Remarks

    The dictionary contains filter keys as the keys, and filter values as the value.

    API Level: 9

    Properties

    View Source

    Filters

    Filters to be used in the GetPackages method.

    Declaration
    public IDictionary<string, bool> Filters { get; }
    Property Value
    Type Description
    IDictionary<String, Boolean>
    API Level: 3
    View Source

    StringFilters

    String filters to be used in the GetPackages method.

    Declaration
    public IDictionary<string, string> StringFilters { get; }
    Property Value
    Type Description
    IDictionary<String, String>
    API Level: 9
    • View Source
    Back to top Copyright © 2016-2022 Samsung
    Generated by DocFX