2016-03-22 23:02:25 +03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Xamarin.Forms
|
|
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
|
|
public sealed class ExportRendererAttribute : HandlerAttribute
|
|
|
|
{
|
2018-11-23 20:40:15 +03:00
|
|
|
public ExportRendererAttribute(Type handler, Type target) : this(handler, target, null)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public ExportRendererAttribute(Type handler, Type target, Type[] supportedVisuals) : base(handler, target, supportedVisuals)
|
2016-03-22 23:02:25 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|