using System; namespace Caliburn.Metadata { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)] public class ActionAttribute : Attribute { private string _rescue; public string Rescue { get { return _rescue; } set { _rescue = value; } } } }