// The Nova Project by Ken Beckett. // Copyright (C) 2007-2012 Inevitable Software, all rights reserved. // Released under the Common Development and Distribution License, CDDL-1.0: http://opensource.org/licenses/cddl1.php using System.Collections.Generic; using System.Linq; using Mono.Cecil; namespace Nova.Utilities { /// <summary> /// Static helper methods for <see cref="ICustomAttributeProvider"/>. /// </summary> public static class ICustomAttributeProviderUtil { #region /* STATIC HELPER METHODS */ /// <summary> /// Determine if the ICustomAttributeProvider has a custom attribute. /// </summary> public static bool HasCustomAttribute(ICustomAttributeProvider customAttributeProvider, string name) { return Enumerable.Any(customAttributeProvider.CustomAttributes, delegate(CustomAttribute customAttribute) { return customAttribute.Constructor.DeclaringType.Name == name; }); } /// <summary> /// Get all custom attributes with the specified name from the ICustomAttributeProvider. /// </summary> public static List<CustomAttribute> GetCustomAttributes(ICustomAttributeProvider customAttributeProvider, string name) { return Enumerable.ToList(Enumerable.Where(customAttributeProvider.CustomAttributes, delegate(CustomAttribute customAttribute) { return customAttribute.Constructor.DeclaringType.Name == name; })); } /// <summary> /// Get the custom attribute with the specified name from the ICustomAttributeProvider. If there are multiple attributes with the name, the first one is returned. /// </summary> public static CustomAttribute GetCustomAttribute(ICustomAttributeProvider customAttributeProvider, string name) { return Enumerable.FirstOrDefault(customAttributeProvider.CustomAttributes, delegate(CustomAttribute customAttribute) { return customAttribute.Constructor.DeclaringType.Name == name; }); } #endregion } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)
The Next Version of Android - Some of What's Coming