DocSpace-buildtools/common/ASC.Textile/FormatterStateAttribute.cs
2019-08-19 15:35:39 +03:00

24 lines
652 B
C#

using System;
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];
}
}
}