c# - What is the reason for PasswordBox not being bindable -


i creating form password box , getting error when trying bind property in view model.

i did bit of research , found out because of security reasons made not bindable. not person can accept that, want know reason why. makes naming property , calling .password more secure being bound property in view model?

i found out can use attached properties make bindable. more secure?

the reason asking should never have plain text passwords in memory. having dependency property password exposed require framework keep password unencrypted in memory until gets garbage collected, considered security problem.


Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Website Login Issue developed in magento -

Can the constants be defined inside a model file of a framework in PHP? -