public SPPropertyAttributePropertyHandler(System.Reflection.FieldInfo fieldInfo, SPPropertyAttribute attrib)
        {
            if (fieldInfo == null) throw new System.ArgumentNullException("fieldInfo");
            if (attrib == null) throw new System.ArgumentNullException("attrib");

            _fieldInfo = fieldInfo;
            _attrib = attrib;
        }
 public SPPropertyAttributePropertyHandler(System.Reflection.FieldInfo fieldInfo, SPPropertyAttribute[] attribs)
 {
     _fieldInfo = fieldInfo;
     _attribs = attribs;
 }