This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void DoSomething() | |
{ | |
var customerType = typeof(Customer); | |
ConfigurationAttribute configAttr = (ConfigurationAttribute)customerType.GetCustomAttributes(typeof(ConfigurationAttribute), false).SingleOrDefault(); | |
} |
I'd prefer to do something like this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void DoSomethingElse() | |
{ | |
ConfigurationAttribute configAttr = typeof(Customer).GetAttribute<ConfigurationAttribute>(); | |
} |
Here is the source for the GetAttribute extension method:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class MemberInfoExtensions | |
{ | |
public static TAttribute GetAttribute<TAttribute>(this MemberInfo member, bool inherited = false, bool throwIfMissing = false) | |
where TAttribute : Attribute | |
{ | |
TAttribute attr = member.GetCustomAttributes(typeof(TAttribute), inherited).OfType<TAttribute>().SingleOrDefault(); | |
if (throwIfMissing && attr == null) | |
throw new ApplicationException(string.Format("Could not find Attribute of type {0} on {1}", typeof(TAttribute).FullName, member.Name)); | |
return attr; | |
} | |
} |
You can download the full source (with tests) on GitHub here.
No comments:
Post a Comment