set_application_info
Description:
public bool set_application_info (string uri, string name, string exec, int count, DateTime? stamp) throws BookmarkFileError
Sets the meta-data of application name
inside the list of applications that have registered a bookmark for uri
inside
this.
You should rarely use this function; use add_application and remove_application instead.
name
can be any UTF-8 encoded string used to identify an application. exec
can have one of these two modifiers: "%f",
which will be expanded as the local file name retrieved from the bookmark's URI; "%u", which will be expanded as the bookmark's URI. The
expansion is done automatically when retrieving the stored command line using the
get_application_info function. count
is the
number of times the application has registered the bookmark; if is < 0, the current registration count will be increased by one, if is 0, the
application with name
will be removed from the list of registered applications. stamp
is the Unix time of the last
registration.
If you try to remove an application by setting its registration count to zero, and no bookmark for uri
is found,
false is returned and throws is set to
g_bookmark_file_error_uri_not_found; similarly, in the event that no application name
has registered a bookmark for
uri
, false is returned and error is set to
g_bookmark_file_error_app_not_registered. Otherwise, if no bookmark for uri
is found, one is created.
Parameters:
this | |
uri |
a valid URI |
name |
an application's name |
exec |
an application's command line |
count |
the number of registrations done for this application |
stamp |
the time of the last registration for this application, which may be null if |
Returns:
true if the application's meta-data was successfully changed. |