本文整理汇总了C#中MemberAccessor.GetAttributes方法的典型用法代码示例。如果您正苦于以下问题:C# MemberAccessor.GetAttributes方法的具体用法?C# MemberAccessor.GetAttributes怎么用?C# MemberAccessor.GetAttributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MemberAccessor
的用法示例。
在下文中一共展示了MemberAccessor.GetAttributes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetMapValues
public override MapValue[] GetMapValues(TypeExtension typeExtension, MemberAccessor member, out bool isSet)
{
List<MapValue> list = null;
object[] attrs = member.GetAttributes<MapValueAttribute>();
if (attrs != null)
{
list = new List<MapValue>(attrs.Length);
foreach (MapValueAttribute a in attrs)
list.Add(new MapValue(a.OrigValue, a.Values));
}
attrs = member.GetTypeAttributes(typeof(MapValueAttribute));
var memberType = TypeHelper.UnwrapNullableType(member.Type);
if (attrs != null && attrs.Length > 0)
{
if (list == null)
list = new List<MapValue>(attrs.Length);
foreach (MapValueAttribute a in attrs)
if (a.Type == null && a.OrigValue != null && a.OrigValue.GetType() == memberType ||
a.Type is Type && (Type)a.Type == memberType)
list.Add(new MapValue(a.OrigValue, a.Values));
}
var typeMapValues = GetMapValues(typeExtension, memberType, out isSet);
if (list == null)
return typeMapValues;
if (typeMapValues != null)
list.AddRange(typeMapValues);
isSet = true;
return list.ToArray();
}