Does anyone know why the IdentityManager.Current.FindServerInfo() method always returns null in the following code?
using System.Windows.Controls;
using ESRI.ArcGIS.Client;
namespace DebugTest
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
IdentityManager.ServerInfo serverInfo = IdentityManager.Current.FindServerInfo("https://gis1.logis.org/arcgis");
}
}
}