本文整理汇总了C#中IPropertyMap.GetMaxLength方法的典型用法代码示例。如果您正苦于以下问题:C# IPropertyMap.GetMaxLength方法的具体用法?C# IPropertyMap.GetMaxLength怎么用?C# IPropertyMap.GetMaxLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IPropertyMap
的用法示例。
在下文中一共展示了IPropertyMap.GetMaxLength方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ValidateMaxLength
private void ValidateMaxLength(object obj, IPropertyMap propertyMap, IList exceptions)
{
int max = propertyMap.GetMaxLength();
if (max > -1)
{
IObjectManager om = this.Context.ObjectManager;
if (propertyMap.IsCollection)
{
IList value = (IList) om.GetPropertyValue(obj, propertyMap.Name);
if (value != null)
{
if (value.Count > max )
{
string msg = "Too many elements in list";
if (propertyMap.IsCollection)
HandleException(
obj,
propertyMap.Name,
exceptions,
new ValidationException(GetExceptionMessage(obj, propertyMap, msg, max, value.Count)),
max,
value.Count,
value.Count);
}
}
}
else
{
if (propertyMap.ReferenceType == ReferenceType.None)
{
if (!(om.GetNullValueStatus(obj, propertyMap.Name)))
{
object objValue = om.GetPropertyValue(obj, propertyMap.Name);
if (objValue != null)
{
string value = objValue.ToString();
if (value.Length > max )
{
string msg = "String too long";
if (propertyMap.IsCollection)
HandleException(
obj,
propertyMap.Name,
exceptions,
new ValidationException(GetExceptionMessage(obj, propertyMap, msg, max, value.Length)),
max,
value.Length,
value);
}
}
}
}
}
}
}