convertersystems / opc-ua-samples

Sample HMIs using OPC Unified Architecture (OPC UA) and Visual Studio.
MIT License
105 stars 43 forks source link

Can possible that many instants of OPC UA server fetch and display in mobile app ? #26

Closed tejasklodha closed 7 years ago

tejasklodha commented 7 years ago

Dear Sir,

I am looking for that multiple opc ua server fetch and display on same page of mobile application

Example: I have 10 OPC UA server and fetch some 5 variables from each server and display 5 variable of each opc ua server on same page of android application. can you demonstrate this in Workstation.MobileHmi ?

Thanks,

awcullen commented 7 years ago

When using version 2.0.0-RC2, you can build a UaApplication in app.cs.

        protected override void OnStart()
        {
            // Setup a logger.
            this.loggerFactory = new LoggerFactory();
            this.loggerFactory.AddDebug(LogLevel.Trace);

            // Build and run an OPC UA application instance.
            this.application = new UaApplicationBuilder()
                .UseApplicationUri($"urn:{Dns.GetHostName()}:Workstation.MobileHmi")
                .UseDirectoryStore(Path.Combine(
                    Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
                    "pki"))
                .UseIdentity(this.ShowSignInDialog)
                .UseLoggerFactory(this.loggerFactory)
                .Build();

            this.application.Run();

            // Show the MainPage
            this.MainPage = new NavigationPage(new MainPage());
        }

Then you create 10 view-models, each with a specific name and Subscription attribute with the ipAddress of the server.

    /// <summary>
    /// A model for PLC1MainView.
    /// </summary>
    [Subscription(endpointUrl: "opc.tcp://plc1:26543", publishingInterval: 500, keepAliveCount: 20)]
    public class PLC1MainViewModel : SubscriptionBase
    {
        /// <summary>
        /// Gets or sets the value of Axis1.
        /// </summary>
        [MonitoredItem(nodeId: "ns=2;s=Axis1")]
        public float Axis1
        {
            get { return this.axis1; }
            set { this.SetProperty(ref this.axis1, value); }
        }
        private float axis1;
}

The last thing is the MainView, which shows the 10 view-models

        <ScrollView>
          <StackLayout>
            <StackLayout>
                <StackLayout.BindingContext>
                    <local:PLC1MainViewModel />
                </StackLayout.BindingContext>
                <Label Text="PLC1Axis1" />
                <Slider Minimum="-180"
                        Maximum="180"
                        Value="{Binding Axis1, Mode=TwoWay}"/>
            </StackLayout>

            <StackLayout>
                <StackLayout.BindingContext>
                    <local:PLC2MainViewModel />
                </StackLayout.BindingContext>
                <Label Text="PLC2Axis1" />
                <Slider Minimum="-180"
                        Maximum="180"
                        Value="{Binding Axis1, Mode=TwoWay}"/>
            </StackLayout>

            <!--repeat 8 more times-->

          </StackLayout>
        </ScrollView>
tejasklodha commented 7 years ago

Dear Sir,

Above method work and it is very easy compare to previous code ... but sometimes it is worked and some time not working..

Means I made android and UWP mobile app which display two OPC UA server data at same time and when i am trying to run UWP app its working fine and display both PLC data simultaneously real time but same application I run again without change anything in code but anyone server not update value means slider not change even i can able to browse OPC UA server from OPC Browser. same issue observed in android mobile app

I also observe that when OPC UA server not change dynamic value from OPC UA sever at that time NO Session created.

Can you solve this issue ?

Note: I tested in 2.0.0 - RC2 and 2.0.0 - RC3

Thanks,

awcullen commented 7 years ago

There should be lots of information in the Debug output window. Please save the output to a file and post here or on Dropbox.

tejasklodha commented 7 years ago

Dear sir,

Find below output from VS 15. Note: I am able to Browse my OPC UA Server by using OPC Browser

Android Output.txt Android Output 2.txt UWP Output1.txt

awcullen commented 7 years ago

For UWP: UaTcpSecureChannel:Trace: Created certificate with subject alt name 'urn:DESKTOP-L7MTVKN:myIoTUWP'. UaTcpSecureChannel:Trace: Sending OpenSecureChannelRequest, Handle: 2 UaTcpSecureChannel:Error: Error receiving response. [BadSecurityChecksFailed]

I know that error to mean that the UA Server did not accept the certificate.

For Droid: There is no logging of the UaTcpSecureChannel. Please verify you call this.application.Run() in the OnStart() method.

tejasklodha commented 7 years ago

Dear Sir,

For android.

I already mentioned this.application.Run() in the OnStart() method but still sometime code works and some time code not works. at same time both OPC UA server I can able to browse in OPC UA browser.

below are my code. App.cs call PLC1View where I bind two view model (MainPageViewModel, PLC1MainViewModel ) in stacklayout

PLC1MainViewModel.cs.txt PLC1View.xaml.txt PLC1View.xaml.cs.txt App.xaml.cs.txt MainPageViewModel.cs.txt

tejasklodha commented 7 years ago

Dear Sir,

For UWP

Below are today's debug logs and application screenshot for your reference. when I run application first time then one PLC simulator data updated real time and I can able to view on screen as per attached screenshot and after that again when i run same application without change of code then both PLC data not updated in application as per attached screenshot and again note that at same time both PLC data(OPC UA server data), I can able to browse in OPC UA browser. . I attached both case debug output and application screenshot as below.

UWP Output 03_05 Debug 2.txt uwp output 03_05 screenshoot 1 uwp output 03_05 screenshoot 2 UWP Output 03_05 Debug 1.txt

Thanks,

tejasklodha commented 7 years ago

Dear Sir ,

For Android.

I add one main_page that display only one view model also also add one button which can redirect PLC1View page as mentioned above below are the screenshot of main_page (Android Screenshoot main_page )

android screenshoot main_page

below are the screenshot of PLCView (Android Screenshoot PLCView page )

android screenshoot plcview page

below are debug output of android application

Android Output 03_05 Debug 1.txt

Thanks,

tejasklodha commented 7 years ago

Dear Sir,

For UWP

More Debug Logs for your reference...

Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. The thread 0x3910 has exited with code 0 (0x0). The thread 0x3300 has exited with code 0 (0x0). The thread 0xb4c has exited with code 0 (0x0). The thread 0x2148 has exited with code 0 (0x0). The thread 0x29a8 has exited with code 0 (0x0). The thread 0x2484 has exited with code 0 (0x0). Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:26543'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. The thread 0x12e8 has exited with code 0 (0x0). The thread 0x1fd8 has exited with code 0 (0x0). Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:26543'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. The thread 0x3420 has exited with code 0 (0x0). The thread 0x26bc has exited with code 0 (0x0). Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:48030'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:26543'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. The thread 0x21d8 has exited with code 0 (0x0). The thread 0x26f0 has exited with code 0 (0x0). The thread 0x2f20 has exited with code 0 (0x0). The thread 0x3a94 has exited with code 0 (0x0). Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:48030'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:48030 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:48030 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:48030'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:26543'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. The thread 0x2de4 has exited with code 0 (0x0). The thread 0x26ec has exited with code 0 (0x0). The thread 0x3230 has exited with code 0 (0x0). The thread 0x312c has exited with code 0 (0x0). Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:48030'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:48030 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:48030 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:48030'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Error: Error discovering endpoints of 'opc.tcp://192.168.137.1:26543'. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 IoT_Mobile.MainPageViewModel:Trace: Error getting channel. A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 192.168.137.1:26543 Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. The thread 0x1e34 has exited with code 0 (0x0). The thread 0x37f8 has exited with code 0 (0x0). The thread 0x353c has exited with code 0 (0x0). The thread 0xb60 has exited with code 0 (0x0). The thread 0x1230 has exited with code 0 (0x0). The thread 0x1e88 has exited with code 0 (0x0).

tejasklodha commented 7 years ago

Dear Sir,

Today I again debug code and still found random behavior of code. Sometime both PLC data display on scren and same code run again then some time both PLC can not show real time data Below are Debug code for both situation

Situation 1 : Debug code when Both PLC data update Real time on screen of UWp app

'IoT_Mobile.UWP.exe' (CoreCLR: DefaultDomain): Loaded 'C:\Program Files\WindowsApps\Microsoft.NET.CoreRuntime.1.0_1.0.23819.0_x86__8wekyb3d8bbwe\mscorlib.ni.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\entrypoint\IoT_Mobile.UWP.exe'. Symbols loaded. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\WinMetadata\Windows.winmd'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.InteropServices.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Debug.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.WindowsRuntime.UI.Xaml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Platform.UAP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Private.Uri.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ObjectModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.Expressions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Chart.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Controls.Data.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Input.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Primitives.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.DataControlsRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Data.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.DataControls.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Common.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.InputRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Input.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Template10Library.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Globalization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Xaml.Interactivity.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Extensions.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\BouncyCastle.Crypto.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.CSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Configuration.Abstractions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Configuration.Binder.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.DependencyInjection.Abstractions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Logging.Abstractions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Logging.Debug.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Logging.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Practices.ServiceLocation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Practices.Unity.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Practices.Unity.RegistrationByConvention.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.VisualBasic.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Win32.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Xaml.Interactions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Newtonsoft.Json.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\SkiaSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\SkiaSharp.Views.Forms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\SkiaSharp.Views.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.AppContext.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Buffers.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.Concurrent.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.Immutable.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.NonGeneric.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.Specialized.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.Annotations.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.DataAnnotations.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.EventBasedAsync.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.TypeConverter.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Console.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Core.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Data.Common.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Contracts.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.DiagnosticSource.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.StackTrace.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Tools.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Tracing.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Dynamic.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Globalization.Calendars.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Globalization.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.Compression.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.Compression.ZipFile.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.FileSystem.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.FileSystem.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.IsolatedStorage.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.UnmanagedMemoryStream.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.Parallel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.Queryable.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Http.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Http.Rtc.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.NameResolution.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.NetworkInformation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Requests.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Sockets.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.WebHeaderCollection.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.WebSockets.Client.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.WebSockets.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Numerics.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Numerics.Vectors.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Numerics.Vectors.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Private.DataContractSerialization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Private.ServiceModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Interfaces.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.PlatformServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Windows.Threading.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Context.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.DispatchProxy.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Emit.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Emit.ILGeneration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Emit.Lightweight.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Metadata.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Primitives.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.TypeExtensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Resources.ResourceManager.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.CompilerServices.Unsafe.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Handles.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.InteropServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.InteropServices.RuntimeInformation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Numerics.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.Json.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Claims.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Algorithms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Cng.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Encoding.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.X509Certificates.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Principal.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Duplex.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Http.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.NetTcp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Security.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Web.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.Encoding.CodePages.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.Encoding.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.Encoding.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.RegularExpressions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Overlapped.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.Dataflow.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.Parallel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Timer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Windows.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.Linq.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.ReaderWriter.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.Serialization.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.XDocument.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.XmlDocument.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.XmlSerializer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Documents.SpreadsheetStreaming.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Chart.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.ChartRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Common.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.DataVisualization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.PrimitivesRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.SkiaSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Zip.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Workstation.UaClient.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Platform.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Xaml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:48030'. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. The operation was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. The operation was canceled. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Success discovering endpoints of 'opc.tcp://192.168.137.1:26543'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Success discovering endpoints of 'opc.tcp://192.168.137.1:48030'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel opening. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel opening. Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Found certificate with subject alt name 'urn:DESKTOP-L7MTVKN:myIoTUWP'. Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Found certificate with subject alt name 'urn:DESKTOP-L7MTVKN:myIoTUWP'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Opening session channel with endpoint 'opc.tcp://192.168.137.1:48030'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Opening session channel with endpoint 'opc.tcp://192.168.137.1:26543'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: SecurityPolicy: 'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: SecurityPolicy: 'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: SecurityMode: 'Sign'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: SecurityMode: 'SignAndEncrypt'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: UserIdentity: 'Workstation.ServiceModel.Ua.AnonymousIdentity'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: UserIdentity: 'Workstation.ServiceModel.Ua.AnonymousIdentity'. Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending OpenSecureChannelRequest, Handle: 2 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending OpenSecureChannelRequest, Handle: 2 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received OpenSecureChannelResponse, Handle: 2 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received OpenSecureChannelResponse, Handle: 2 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending CreateSessionRequest, Handle: 3 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending CreateSessionRequest, Handle: 3 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Installed new security token 1. Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received CreateSessionResponse, Handle: 3 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Installed new security token 1. Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received CreateSessionResponse, Handle: 3 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending ActivateSessionRequest, Handle: 4 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received ActivateSessionResponse, Handle: 4 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending ReadRequest, Handle: 5 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending ActivateSessionRequest, Handle: 4 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received ActivateSessionResponse, Handle: 4 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Sending ReadRequest, Handle: 5 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received ReadResponse, Handle: 5 Result: 0x00000000 Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel:Trace: Received ReadResponse, Handle: 5 Result: 0x00000000

Situation 2 : Debug code when Both PLC data Not update Real time on screen of UWp app

'IoT_Mobile.UWP.exe' (CoreCLR: DefaultDomain): Loaded 'C:\Program Files\WindowsApps\Microsoft.NET.CoreRuntime.1.0_1.0.23819.0_x86__8wekyb3d8bbwe\mscorlib.ni.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\entrypoint\IoT_Mobile.UWP.exe'. Symbols loaded. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\WinMetadata\Windows.winmd'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.InteropServices.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Debug.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.WindowsRuntime.UI.Xaml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Platform.UAP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Private.Uri.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ObjectModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.Expressions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Chart.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Controls.Data.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Input.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.UI.Xaml.Primitives.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.DataControlsRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Data.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.DataControls.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Common.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.InputRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Input.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Template10Library.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Globalization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Xaml.Interactivity.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Extensions.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\BouncyCastle.Crypto.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.CSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Configuration.Abstractions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Configuration.Binder.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Configuration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.DependencyInjection.Abstractions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Logging.Abstractions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Logging.Debug.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Logging.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Extensions.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Practices.ServiceLocation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Practices.Unity.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Practices.Unity.RegistrationByConvention.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.VisualBasic.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Win32.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Microsoft.Xaml.Interactions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Newtonsoft.Json.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\SkiaSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\SkiaSharp.Views.Forms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\SkiaSharp.Views.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.AppContext.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Buffers.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.Concurrent.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.Immutable.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.NonGeneric.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Collections.Specialized.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.Annotations.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.DataAnnotations.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.EventBasedAsync.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ComponentModel.TypeConverter.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Console.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Core.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Data.Common.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Contracts.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.DiagnosticSource.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.StackTrace.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Tools.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Diagnostics.Tracing.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Dynamic.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Globalization.Calendars.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Globalization.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.Compression.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.Compression.ZipFile.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.FileSystem.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.FileSystem.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.IsolatedStorage.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.IO.UnmanagedMemoryStream.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.Parallel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Linq.Queryable.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Http.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Http.Rtc.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.NameResolution.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.NetworkInformation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Requests.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.Sockets.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.WebHeaderCollection.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.WebSockets.Client.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Net.WebSockets.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Numerics.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Numerics.Vectors.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Numerics.Vectors.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Private.DataContractSerialization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Private.ServiceModel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Core.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Interfaces.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Linq.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.PlatformServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.Windows.Threading.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reactive.WindowsRuntime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Context.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.DispatchProxy.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Emit.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Emit.ILGeneration.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Emit.Lightweight.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Metadata.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.Primitives.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Reflection.TypeExtensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Resources.ResourceManager.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.CompilerServices.Unsafe.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Handles.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.InteropServices.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.InteropServices.RuntimeInformation.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Numerics.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.Json.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Runtime.Serialization.Xml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Claims.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Algorithms.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Cng.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Encoding.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Cryptography.X509Certificates.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Security.Principal.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Duplex.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Http.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.NetTcp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Security.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.ServiceModel.Web.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.Encoding.CodePages.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.Encoding.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.Encoding.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Text.RegularExpressions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Overlapped.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.Dataflow.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Tasks.Parallel.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Threading.Timer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Windows.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.Linq.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.ReaderWriter.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.Serialization.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.XDocument.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.XmlDocument.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\System.Xml.XmlSerializer.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Documents.SpreadsheetStreaming.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Chart.dll'. Module was built without symbols. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.ChartRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Common.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.DataVisualization.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.PrimitivesRenderer.UWP.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.XamarinForms.SkiaSharp.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Telerik.Zip.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Workstation.UaClient.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Platform.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'IoT_Mobile.UWP.exe' (CoreCLR: CoreCLR_UWP_Domain): Loaded 'C:\Users\FMIL\Documents\Visual Studio 2015\Projects\IoTUWP\IoT_Mobile\IoT_Mobile.UWP\bin\x86\Debug\AppX\Xamarin.Forms.Xaml.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Information: Discovering endpoints of 'opc.tcp://192.168.137.1:26543'. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. The operation was canceled. IoT_Mobile.MainPageViewModel:Trace: Error getting channel. The operation was canceled. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Success discovering endpoints of 'opc.tcp://192.168.137.1:26543'. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel faulted. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closing. Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel:Trace: Channel closed. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. The thread 0x3724 has exited with code 0 (0x0). IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. The thread 0x9d0 has exited with code 0 (0x0). IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled. IoT_Mobile.PLC1MainViewModel:Trace: Error getting channel. A task was canceled.

Any solution you found ?

Let me know if you want more debug logs

Thanks,

awcullen commented 7 years ago

Thank you for the debug logs. I found the bug and am working on fixing it.

awcullen commented 7 years ago

Try version 2.0.0-RC4 please.

tejasklodha commented 7 years ago

Dear Sir,

Its working Fine in UWP mobile app but not expected working in Android mobile app. I also tried to run after deleting bin and object folder content

find below debug logs of android real device for your reference.

On display I have Display two OPC server but only one opc server data change in real time

Android application is debugging. Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/IoT_Mobile.Android.dll Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/BouncyCastle.Crypto.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/FormsViewGroup.dll [External] 05-07 16:43:35.721 D/ActivityThread( 5224): installProvider: context.getPackageName()=IoT_Mobile.Android Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Configuration.Abstractions.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Configuration.Binder.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Configuration.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.DependencyInjection.Abstractions.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Logging.Abstractions.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Logging.Debug.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Logging.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Microsoft.Extensions.Primitives.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/SkiaSharp.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/SkiaSharp.Views.Android.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/SkiaSharp.Views.Forms.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/System.Reactive.Core.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/System.Reactive.Interfaces.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/System.Reactive.Linq.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/System.Reactive.PlatformServices.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/System.Runtime.CompilerServices.Unsafe.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/System.Threading.Tasks.Dataflow.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.Xamarin.Android.Chart.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.Xamarin.Android.Common.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.Xamarin.Android.Data.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.Xamarin.Android.Input.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.Xamarin.Android.List.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.Xamarin.Android.Primitives.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.Chart.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.Common.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.DataControls.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.DataVisualization.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.Input.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.Primitives.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Telerik.XamarinForms.SkiaSharp.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Urho.Droid.SdlBinding.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Urho.Forms.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Workstation.UaClient.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.Animated.Vector.Drawable.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.Design.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.v4.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.v7.AppCompat.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.v7.CardView.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.v7.MediaRouter.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.v7.RecyclerView.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.v8.RenderScript.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Android.Support.Vector.Drawable.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Forms.Core.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Forms.Platform.Android.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Forms.Platform.dll [External] Loaded assembly: /storage/emulated/0/Android/data/IoT_Mobile.Android/files/.override/Xamarin.Forms.Xaml.dll [External] Loaded assembly: Mono.Android.dll [External] Loaded assembly: Java.Interop.dll [External] Loaded assembly: System.Runtime.dll [External] Loaded assembly: System.Collections.Concurrent.dll [External] Loaded assembly: System.Reflection.dll [External] Loaded assembly: System.Threading.dll [External] Loaded assembly: System.Diagnostics.Debug.dll [External] Loaded assembly: System.dll [External] Loaded assembly: System.Runtime.InteropServices.dll [External] Loaded assembly: System.Collections.dll [External] Loaded assembly: System.Linq.dll [External] Loaded assembly: System.Core.dll [External] Loaded assembly: System.Reflection.Extensions.dll [External] Loaded assembly: System.ObjectModel.dll [External] Loaded assembly: MonoDroidConstructors [External] Loaded assembly: System.Threading.Tasks.dll [External] Loaded assembly: System.Xml.ReaderWriter.dll [External] Loaded assembly: System.Xml.dll [External] Loaded assembly: System.IO.dll [External] Loaded assembly: System.Runtime.Extensions.dll [External] Loaded assembly: System.Linq.Expressions.dll [External] Loaded assembly: System.Resources.ResourceManager.dll [External] Loaded assembly: System.Globalization.dll [External] Loaded assembly: System.Dynamic.Runtime.dll [External] Loaded assembly: System.Text.RegularExpressions.dll [External] Thread started: #2 Thread started: #3 Thread started: #4 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: UaApplication running. Loaded assembly: System.ComponentModel.dll [External] Loaded assembly: System.Diagnostics.Tracing.dll [External] Thread started: #5 Thread started: #6 Thread started: #7 Thread started: #8 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 Loaded assembly: System.Net.Sockets.dll [External] [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 Loaded assembly: System.Xml.XDocument.dll [External] Loaded assembly: System.Xml.Linq.dll [External] [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:26543'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:48030'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. Loaded assembly: System.Text.Encoding.dll [External] Thread started: #9 Thread started: #10 Thread started: #11 Thread started: #12 Loaded assembly: System.Text.Encoding.Extensions.dll [External] [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending OpenSecureChannelRequest, Handle: 1 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received OpenSecureChannelResponse, Handle: 1 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opened. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending GetEndpointsRequest, Handle: 2 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Error: Error discovering endpoints of 'opc.tcp://192.168.0.6:48030'. The operation has timed out. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. OnFaulted [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Removing UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 from channelMap. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:48030'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Error: Error discovering endpoints of 'opc.tcp://192.168.0.6:48030'. The operation has timed out. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. OnFaulted [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Removing UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 from channelMap. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:48030'. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Error: Error discovering endpoints of 'opc.tcp://192.168.0.6:26543'. Timeout occurred while processing the request. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:26543. OnFaulted [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Removing UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 from channelMap. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:26543. Timeout occurred while processing the request. [0:] IoT_Mobile.MainPageViewModel: Trace: Error getting channel. Timeout occurred while processing the request. [0:] IoT_Mobile.MainPageViewModel: Trace: Error getting channel. Timeout occurred while processing the request. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:26543 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:26543'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending OpenSecureChannelRequest, Handle: 1 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received OpenSecureChannelResponse, Handle: 1 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opened. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending GetEndpointsRequest, Handle: 2 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Installed new security token 1. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received GetEndpointsResponse, Handle: 2 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CloseSecureChannelRequest, Handle: 3 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Success discovering endpoints of 'opc.tcp://192.168.0.6:26543'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel opening. Loaded assembly: System.IO.FileSystem.dll [External] [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Found certificate with subject alt name 'urn:localhost:myIoTUWP'. Loaded assembly: System.Security.Cryptography.X509Certificates.dll [External] [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Opening session channel with endpoint 'opc.tcp://192.168.0.6:26543'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: SecurityPolicy: 'http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: SecurityMode: 'SignAndEncrypt'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: UserIdentity: 'Workstation.ServiceModel.Ua.AnonymousIdentity'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending OpenSecureChannelRequest, Handle: 1 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Error: Error discovering endpoints of 'opc.tcp://192.168.0.6:48030'. The operation has timed out. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. OnFaulted [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Removing UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 from channelMap. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received OpenSecureChannelResponse, Handle: 1 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CreateSessionRequest, Handle: 2 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Installed new security token 1. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received CreateSessionResponse, Handle: 2 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:48030'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending ActivateSessionRequest, Handle: 3 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received ActivateSessionResponse, Handle: 3 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending ReadRequest, Handle: 4 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received ReadResponse, Handle: 4 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CreateSubscriptionRequest, Handle: 5 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received CreateSubscriptionResponse, Handle: 5 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel opened. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Success creating UaTcpSessionChannel for opc.tcp://192.168.0.6:26543. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CreateSubscriptionRequest, Handle: 6 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CreateSubscriptionRequest, Handle: 7 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received CreateSubscriptionResponse, Handle: 6 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 8 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received CreateSubscriptionResponse, Handle: 7 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 9 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 10 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CreateMonitoredItemsRequest, Handle: 11 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending CreateMonitoredItemsRequest, Handle: 12 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 9 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 8 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received CreateMonitoredItemsResponse, Handle: 11 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received CreateMonitoredItemsResponse, Handle: 12 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 13 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 14 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 10 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 15 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 13 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 16 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 14 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 17 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 18 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 19 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 15 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 20 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 21 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 18 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 19 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 16 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 22 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 21 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 23 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 24 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 20 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 23 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 25 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 17 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 26 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 24 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 27 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 28 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 22 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 29 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 27 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 25 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 30 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 28 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 29 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 31 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 26 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 32 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 33 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 31 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 34 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 33 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 30 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 35 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 36 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 34 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 37 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 36 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 32 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 38 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 39 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 40 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Error: Error discovering endpoints of 'opc.tcp://192.168.0.6:48030'. The operation has timed out. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel faulted. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. OnFaulted [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closing. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Removing UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 from channelMap. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Trace: Channel closed. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Error creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] IoT_Mobile.PLC1MainViewModel: Trace: Error getting channel. The operation has timed out. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 35 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 41 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 39 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 40 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 37 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 42 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 43 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 38 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 44 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 43 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 45 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 46 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 41 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 47 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 48 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 45 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 46 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 49 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 44 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 50 Thread started: #13 Thread started: #14 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 48 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 49 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 42 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 51 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 52 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin creating UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSessionChannel: Information: Discovering endpoints of 'opc.tcp://192.168.0.6:48030'. [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Channel opening. [0:] Workstation.ServiceModel.Ua.UaApplication: Trace: Begin getting UaTcpSessionChannel for opc.tcp://192.168.0.6:48030 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 53 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 50 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 54 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 47 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 55 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 52 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 53 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 56 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 57 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 58 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 54 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 59 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received PublishResponse, Handle: 51 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending PublishRequest, Handle: 60 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 56 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 57 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Received WriteResponse, Handle: 58 Result: 0x00000000 [0:] Workstation.ServiceModel.Ua.Channels.UaTcpSecureChannel: Trace: Sending WriteRequest, Handle: 61

Thanks,

awcullen commented 7 years ago

Your UWP app can connect to 'opc.tcp://192.168.0.6:48030', but your Android app can not? What is the vender of server at 48030?

tejasklodha commented 7 years ago

Dear Sir,

Its working like charm... Thanks....

Now its working in android as well UWP without any issue.

Below steps I follow.

clean solution delete bin and obj and rebuild downgrade and upgrade package of client again.

Then issue resolved.

Vendor of OPC UA server is https://www.unified-automation.com/