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
When adding a protected property that is not reactive to my class which partial and inherits from ReactiveObject but the class is not annotated as [Reactive ]
public partial class Class1 : ReactiveObject {
[Reactive] public partial int ReactiveInt { get; set; }
protected int NonReactiveInt { get; }
}
generates an error
'Class1.NonReactiveInt' is inaccessible due to its protection level
Workaround: either annotate NonReactiveInt with [IgnoreReactive] or change to public
The text was updated successfully, but these errors were encountered:
When adding a protected property that is not reactive to my class which partial and inherits from ReactiveObject but the class is not annotated as [Reactive ]
generates an error
'Class1.NonReactiveInt' is inaccessible due to its protection level
Workaround: either annotate NonReactiveInt with [IgnoreReactive] or change to public
The text was updated successfully, but these errors were encountered: