[NUI] Fix CA1044
authorDongsug Song <dongsug.song@samsung.com>
Wed, 9 Dec 2020 11:56:39 +0000 (20:56 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 21 Dec 2020 12:05:23 +0000 (21:05 +0900)
commit375b06e28df99f266888cacdcbe0fb793ea0a2b3
treed62e05540f13825dc8c0a0377cc57e15a13dc861
parent2e93a8b635ab2bc1ed2234ccd7da7819047531ae
[NUI] Fix CA1044

- https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1044
- Get accessors provide read access to a property and set accessors provide write access. Although it is acceptable and often necessary to have a read-only property, the design guidelines prohibit the use of write-only properties. This is because letting a user set a value and then preventing the user from viewing the value does not provide any security. Also, without read access, the state of shared objects cannot be viewed, which limits their usefulness.
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/KeyValue.cs
src/Tizen.NUI/src/public/XamlBinding/Transition.cs