File: Echoer.cs

package info (click to toggle)
dbus-sharp 0.63.git.20060719-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,244 kB
  • ctags: 636
  • sloc: sh: 8,433; xml: 4,036; cs: 3,293; makefile: 163
file content (16 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }
  }
}