callRecordBrowserNew method
Invokes org.freedesktop.Avahi.Server.RecordBrowserNew()
Implementation
Future<String> callRecordBrowserNew(
int interface, int protocol, String name, int clazz, int type, int flags,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
var result = await callMethod(
'org.freedesktop.Avahi.Server',
'RecordBrowserNew',
[
DBusInt32(interface),
DBusInt32(protocol),
DBusString(name),
DBusUint16(clazz),
DBusUint16(type),
DBusUint32(flags)
],
replySignature: DBusSignature('o'),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
return (result.returnValues[0] as DBusObjectPath).value;
}