[NUI] Fix CA1054
authorDongsug Song <dongsug.song@samsung.com>
Wed, 9 Dec 2020 12:46:00 +0000 (21:46 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Mon, 21 Dec 2020 12:05:23 +0000 (21:05 +0900)
commitbd924d500f7a0ed589bacb300e186da2f6b5c3f1
treebabb68c27570764701ac3fc0274a86efe7953c47
parenta1b3b3a3288e7de69e14aa97c4057c41d442d120
[NUI] Fix CA1054

- https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1054
- This rule splits the parameter name into tokens based on the camel casing convention and checks whether each token equals "uri", "Uri", "urn", "Urn", "url", or "Url". If there is a match, the rule assumes that the parameter represents a uniform resource identifier (URI). A string representation of a URI is prone to parsing and encoding errors, and can lead to security vulnerabilities. If a method takes a string representation of a URI, a corresponding overload should be provided that takes an instance of the Uri class, which provides these services in a safe and secure manner.
src/Tizen.NUI/src/public/BaseComponents/VideoView.cs
src/Tizen.NUI/src/public/ImageLoading.cs
src/Tizen.NUI/src/public/ViewProperty/ImageShadow.cs