Ejemplo n.º 1
0
        public void GetData(Action<DataItem, Exception> callback)
        {
            // Use this to create design time data

            var item = new DataItem("Azure MyPictures [design]");
            callback(item, null);
        }
Ejemplo n.º 2
0
        public void GetData(Action<DataItem, Exception> callback)
        {
            // Use this to connect to the actual data service

            var item = new DataItem("Azure MyPictures test client");
            callback(item, null);
        }