Do I have to reset the ReadWriteAuthorizationManager when I have values that are dependent on other properties and those properties can be changed by the user? For instance:
Property 1 is 2000, property 2 gets disabled using the CanWriteProperty override and the ReadWriteAuthorizationManager. However, when the user changes the value of property 1 to something besides 2000, they should then be able to update property 2. To make this happen I would have to reset the ReadWriteAuthorizationManager right?
Jonathan