构造器
GioDBusMessagenew_method_call
自:2.26以来
声明 [源代码]
GDBusMessage*
g_dbus_message_new_method_call (
const gchar* name,
const gchar* path,
const gchar* interface_,
const gchar* method
)
参数
name
-
类型:
const gchar*
有效的D-Bus名称或
NULL
。该参数可以为 NULL
。数据由函数的调用者拥有。 该值是一个NUL终止的UTF-8字符串。 path
-
类型:
const gchar*
有效的对象路径。
数据由函数的调用者拥有。 该值是一个NUL终止的UTF-8字符串。 interface_
-
类型:
const gchar*
有效的D-Bus接口名称或
NULL
。该参数可以为 NULL
。数据由函数的调用者拥有。 该值是一个NUL终止的UTF-8字符串。 method
-
类型:
const gchar*
有效的方法名称。
数据由函数的调用者拥有。 该值是一个NUL终止的UTF-8字符串。
返回值
类型: GDBusMessage
A GDBusMessage
。使用g_object_unref()释放。
函数的调用者将拥有数据,并负责释放它。 |