User scope vs Application scope in app.config

前端 未结 2 1826
感动是毒
感动是毒 2021-01-04 15:43

What is the difference between the User scope and Application scope in app.config?

相关标签:
2条回答
  • 2021-01-04 15:50

    User-scope settings are used to store values specific to each individual user, whereas application-scope settings are used for all users.

    Take a look at this article.

    0 讨论(0)
  • 2021-01-04 16:08

    User Scoped Settings will only affect the current user and are relatively safe to set. They are stored in a user specific location so there is no real issue with writing to them.

    Application Scoped Settings on the other hand are read-only and cannot be changed

    0 讨论(0)
提交回复
热议问题