maui-linux/Xamarin.Forms.Xaml/XamlCompilationAttribute.cs

42 строки
1.2 KiB
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
2016-03-22 23:02:25 +03:00
namespace Xamarin.Forms.Xaml
{
[Flags]
public enum XamlCompilationOptions
{
Skip = 1 << 0,
Compile = 1 << 1
}
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module | AttributeTargets.Class, Inherited = false)]
public sealed class XamlCompilationAttribute : Attribute
{
public XamlCompilationAttribute(XamlCompilationOptions xamlCompilationOptions)
{
XamlCompilationOptions = xamlCompilationOptions;
}
public XamlCompilationOptions XamlCompilationOptions { get; set; }
}
static class XamlCExtensions
2016-03-22 23:02:25 +03:00
{
public static bool IsCompiled(this Type type)
{
var attr = type.GetTypeInfo().GetCustomAttribute<XamlCompilationAttribute>();
if (attr != null)
return attr.XamlCompilationOptions == XamlCompilationOptions.Compile;
attr = type.GetTypeInfo().Module.GetCustomAttribute<XamlCompilationAttribute>();
if (attr != null)
return attr.XamlCompilationOptions == XamlCompilationOptions.Compile;
attr = type.GetTypeInfo().Assembly.GetCustomAttribute<XamlCompilationAttribute>();
if (attr != null)
return attr.XamlCompilationOptions == XamlCompilationOptions.Compile;
return false;
}
}
}