You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="NotifiedCommandNames">The sequence of commands to notify.</param>
24
25
/// <param name="NotifyPropertyChangedRecipients">Whether or not the generated property also broadcasts changes.</param>
25
26
/// <param name="NotifyDataErrorInfo">Whether or not the generated property also validates its value.</param>
26
-
/// <param name="IsRequired">Whether or not the generated property should be marked as required.</param>
27
27
/// <param name="IsOldPropertyValueDirectlyReferenced">Whether the old property value is being directly referenced.</param>
28
28
/// <param name="IsReferenceTypeOrUnconstrainedTypeParameter">Indicates whether the property is of a reference type or an unconstrained type parameter.</param>
29
29
/// <param name="IncludeMemberNotNullOnSetAccessor">Indicates whether to include nullability annotations on the setter.</param>
@@ -34,6 +34,7 @@ internal sealed record PropertyInfo(
34
34
stringTypeNameWithNullabilityAnnotations,
35
35
stringFieldName,
36
36
stringPropertyName,
37
+
EquatableArray<ushort>PropertyModifers,
37
38
AccessibilityPropertyAccessibility,
38
39
AccessibilityGetterAccessibility,
39
40
AccessibilitySetterAccessibility,
@@ -42,7 +43,6 @@ internal sealed record PropertyInfo(
0 commit comments