Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CustomConditionAttribute.cs « Mono.Addins - github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6a977cb1372263ec38772224de4aac21a3e02b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Mono.Addins
{
	/// <summary>
	/// Base class for custom condition attributes. Will be treated as a condition of the same short name, but without the "ConditionAttribute" suffix. For example, Foo.NameConditionAttribute will map to a condition with the ID "Name".
	/// </summary>
	/// <remarks>
	/// Properties and constructor arguments must be tagged with NodeAttributes to indicate the condition attributes to which they should be mapped.
	/// </remarks>
	public abstract class CustomConditionAttribute : Attribute
	{
	}
}