I am researching a problem related to a method call hanging with my silverlight 5 OOB app.
Please see this piece of code. SourceNodeList and CustomerNodeList are ObservableCollections.
System.Diagnostics.Debug.WriteLine("Loading Tree CustEmp");
this.Adapter = new CustEmpSecAdapter(this);
this.SourceNodeList.Clear();
System.Diagnostics.Debug.WriteLine("clear source list");
this.CustomerNodes.Clear();
System.Diagnostics.Debug.WriteLine("clear customer list");
The problem I am having is that this line of code this.CustomerNodes.Clear(); is not executing.
Just to be clear, I cant reproduce this behavior on my dev machine, but I can on a client's machine.
The reason I can tell the line of code is not being executed is that I am not seeing the debug messages that I have included in the code.
Its like the code is just hanging.
Can anyone provide some insight or has anyone run into something similar before?