}
/// <summary>
- /// Package name.
+ /// Package ID.
/// </summary>
public string Id { get { return _id; } }
}
/// <summary>
- /// Retreives all application IDs of this package.
+ /// Retrieves all application IDs of this package.
/// </summary>
/// <returns>Returns a dictionary containing all application info for given application type asynchronously.</returns>
public IEnumerable<ApplicationInfo> GetApplications()
}
/// <summary>
- /// Retreives all application IDs of this package.
+ /// Retrieves all application IDs of this package.
/// </summary>
/// <param name="type">Optional: AppType enum value</param>
/// <returns>Returns a dictionary containing all application info for given application type asynchronously.</returns>
private IDictionary<string, bool> _filter;
/// <summary>
- /// Constructor
+ /// Default constructor with empty filter list. All installed applications will satisfy this filter unless updated with more specific filters.
/// </summary>
public PackageFilter()
{
}
/// <summary>
- /// Constructor
+ /// Constructor with specific filters. Using this will filter out installed packages which do not meet the criteria of the filters.
/// </summary>
public PackageFilter(IDictionary<string, bool> filter)
{
public const string Preload = "PMINFO_PKGINFO_PROP_PACKAGE_PRELOAD";
}
}
-}
\ No newline at end of file
+}
}
/// <summary>
- /// Retrieves package information of all packages satisfying filter conditions.
+ /// Retrieves package information of all installed packages.
/// </summary>
/// <returns>Returns the list of packages asynchronously.</returns>
/// <privilege>http://tizen.org/privilege/packagemanager.info</privilege>
}
/// <summary>
- /// Retrieves package information of all packages satisfying filter conditions.
+ /// Retrieves package information of all installed packages satisfying filter conditions.
/// </summary>
/// <param name="filter">Optional - package filters</param>
/// <returns>Returns the list of packages asynchronously.</returns>
Log.Debug(LogTag, string.Format("New Event Status flag: {0}", s_eventStatus));
return;
}
+ Log.Debug(LogTag, string.Format("Failed to set flag for {0} event. err = {1}", eventStatus, err));
}
- Log.Debug(LogTag, string.Format("Failed to set flag for {0} event. err = {1}", eventStatus, err));
}
private static void RegisterPackageManagerEventIfNeeded()