These are fields, not properties. They are modified directly by other code so the only place where you could put a breakpoint is the code that modifies them.
What you can do, is create a conditional breakpoint that will break when a condition becomes true or a value changes. This is described in How to: Specify a Breakpoint Condition. Essentially, you right-click on a breakpoint and then click Condition
from the shortcut menu.
This way you can put conditional breakpoints to any place that may modify the field. Again, you can't place the breakpoint on the field itself - it's just a memory location.