Lines Matching defs:property
45 // There are various cases to consider, based on the property type (message, string/bytes, or "genuine" primitive)
53 internal SingleFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, descriptor)
55 if (!property.CanWrite)
59 setValueDelegate = ReflectionUtil.CreateActionIMessageObject(property.GetSetMethod());
90 MethodInfo hasMethod = property.DeclaringType.GetRuntimeProperty("Has" + property.Name).GetMethod;
96 MethodInfo clearMethod = property.DeclaringType.GetRuntimeMethod("Clear" + property.Name, ReflectionUtil.EmptyTypes);
110 var clrType = property.PropertyType;