summaryrefslogtreecommitdiffstats
path: root/mono/Signal.cs
diff options
context:
space:
mode:
authorOwen Fraser-Green <owen@discobabe.net>2004-03-23 12:10:32 +0000
committerOwen Fraser-Green <owen@discobabe.net>2004-03-23 12:10:32 +0000
commitc916037773d7d3d8d37ca2c5a8899b7b728e377d (patch)
tree21c37372ab9795583e724e8459578b7fe0be330b /mono/Signal.cs
parent2195cf0dbde2ae26b5a684c6d914c1711f44c28d (diff)
First checkin of the Mono bindings.
Diffstat (limited to 'mono/Signal.cs')
-rw-r--r--mono/Signal.cs60
1 files changed, 60 insertions, 0 deletions
diff --git a/mono/Signal.cs b/mono/Signal.cs
new file mode 100644
index 00000000..a9209fec
--- /dev/null
+++ b/mono/Signal.cs
@@ -0,0 +1,60 @@
+namespace DBus
+{
+ using System;
+ using System.Runtime.InteropServices;
+ using System.Diagnostics;
+
+ public class Signal : Message
+ {
+ public Signal() : base(MessageType.Signal)
+ {
+ }
+
+ internal Signal(IntPtr rawMessage, Service service) : base(rawMessage, service)
+ {
+ }
+
+ public Signal(Service service) : base(MessageType.Signal, service)
+ {
+ }
+
+ public new string PathName
+ {
+ get
+ {
+ return base.PathName;
+ }
+
+ set
+ {
+ base.PathName = value;
+ }
+ }
+
+ public new string InterfaceName
+ {
+ get
+ {
+ return base.InterfaceName;
+ }
+
+ set
+ {
+ base.InterfaceName = value;
+ }
+ }
+
+ public new string Name
+ {
+ get
+ {
+ return base.Name;
+ }
+
+ set
+ {
+ base.Name = value;
+ }
+ }
+ }
+}