mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 00:05:38 +00:00
41 lines
523 B
C#
41 lines
523 B
C#
|
//
|
||
|
// DefaultSignalHandlerAttribute.cs
|
||
|
//
|
||
|
// Author: Mike Kestner <mkestner@ximian.com>
|
||
|
//
|
||
|
// (C) 2003 Novell, Inc.
|
||
|
//
|
||
|
|
||
|
namespace GLib {
|
||
|
|
||
|
using System;
|
||
|
|
||
|
public sealed class DefaultSignalHandlerAttribute : Attribute
|
||
|
{
|
||
|
private string method;
|
||
|
private Type type;
|
||
|
|
||
|
public DefaultSignalHandlerAttribute () {}
|
||
|
|
||
|
public string ConnectionMethod
|
||
|
{
|
||
|
get {
|
||
|
return method;
|
||
|
}
|
||
|
set {
|
||
|
method = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public Type Type
|
||
|
{
|
||
|
get {
|
||
|
return type;
|
||
|
}
|
||
|
set {
|
||
|
type = value;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|