Is there any difference between using url-namespaces or urn-namespaces in a wpf control library? Currently we use both:
[assembly: XmlnsDefinition("http://schemas.sample-controls.com/2016/xaml/presentation", "Sample.Controls")]
[assembly: XmlnsDefinition("urn:simplic", "Sample.Controls")]
Are there some pro and contra points which prefers one of the two solutions? The main pro for using urns in my option is the noticeable name.
EDIT: This equestion is not about the difference between URN and URL! It's about the usage in WPF and XmlnsDefinition
.