本文整理汇总了C#中System.Reflection.PropertyInfo.GetDescription方法的典型用法代码示例。如果您正苦于以下问题:C# PropertyInfo.GetDescription方法的具体用法?C# PropertyInfo.GetDescription怎么用?C# PropertyInfo.GetDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Reflection.PropertyInfo
的用法示例。
在下文中一共展示了PropertyInfo.GetDescription方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ToProperty
public MetadataPropertyType ToProperty(PropertyInfo pi, object instance = null)
{
var property = new MetadataPropertyType
{
Name = pi.Name,
Attributes = ToAttributes(pi.GetCustomAttributes(false)),
Type = pi.PropertyType.GetMetadataPropertyType(),
IsValueType = pi.PropertyType.IsValueType() ? true : (bool?)null,
IsSystemType = pi.PropertyType.IsSystemType() ? true : (bool?)null,
IsEnum = pi.PropertyType.IsEnum() ? true : (bool?)null,
TypeNamespace = pi.PropertyType.Namespace,
DataMember = ToDataMember(pi.GetDataMember()),
GenericArgs = pi.PropertyType.IsGenericType()
? pi.PropertyType.GetGenericArguments().Select(x => x.ExpandTypeName()).ToArray()
: null,
Description = pi.GetDescription(),
};
var apiMember = pi.FirstAttribute<ApiMemberAttribute>();
if (apiMember != null)
{
if (apiMember.IsRequired)
property.IsRequired = true;
property.ParamType = apiMember.ParameterType;
property.DisplayType = apiMember.DataType;
}
var apiAllowableValues = pi.FirstAttribute<ApiAllowableValuesAttribute>();
if (apiAllowableValues != null)
{
property.AllowableValues = apiAllowableValues.Values;
property.AllowableMin = apiAllowableValues.Min;
property.AllowableMax = apiAllowableValues.Max;
}
if (instance != null)
{
var value = pi.GetValue(instance, null);
if (value != null
&& !value.Equals(pi.PropertyType.GetDefaultValue()))
{
if (pi.PropertyType.IsEnum())
{
property.Value = "{0}.{1}".Fmt(pi.PropertyType.Name, value);
}
else if (pi.PropertyType == typeof(Type))
{
var type = (Type)value;
property.Value = $"typeof({type.FullName})";
}
else
{
var strValue = value as string;
property.Value = strValue ?? value.ToJson();
}
}
if (pi.GetSetMethod() == null) //ReadOnly is bool? to minimize serialization
property.ReadOnly = true;
}
return property;
}
示例2: GetDescription
public string GetDescription(PropertyInfo propertyInfo)
{
return propertyInfo.GetDescription();
}