Ryujinx-GtkSharp/glib/DefaultSignalHandlerAttribute.cs

41 lines
537 B
C#
Raw Normal View History

//
// 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 System.Type type;
public DefaultSignalHandlerAttribute () {}
public string ConnectionMethod
{
get {
return method;
}
set {
method = value;
}
}
public System.Type Type
{
get {
return type;
}
set {
type = value;
}
}
}
}