DocSpace-buildtools/common/ASC.Textile/FormatterStateAttribute.cs

22 lines
635 B
C#
Raw Normal View History

2019-08-19 12:35:39 +00:00
namespace Textile
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class FormatterStateAttribute : Attribute
{
public string Pattern { get; }
public FormatterStateAttribute(string pattern)
{
Pattern = pattern;
}
public static FormatterStateAttribute Get(Type type)
{
var atts = type.GetCustomAttributes(typeof(FormatterStateAttribute), false);
if (atts.Length == 0)
return null;
return (FormatterStateAttribute)atts[0];
}
}
}