In every XAML document, there are one or more namespace declarations. ie:
<Window x:Class="WindowsApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1 Height="300">
The declarations are in the form of a URL, leading me to ask: Does the runtime actually retrieve information from those URLs when the application loads? What happens if no Internet connection is present?