dbus/mono/example/Echoer.cs

17 lines
288 B
C#
Raw Normal View History

2004-03-23 12:10:32 +00:00
namespace Foo
{
using System;
using DBus;
[Interface("org.freedesktop.Test.Echoer")]
public class Echoer
{
[Method]
public virtual string Echo(string message)
{
System.Console.WriteLine("I received: " + message);
return "Reply: " + message;
}
}
}