Esempio n. 1
0
    //****************************************************************************************************
    //
    //****************************************************************************************************

    private void RebuildListItemDatasList()
    {
        if (m_items != null)
        {
            m_items.Clear();

            FileSystemEntry root = new FileSystemEntry(null, filter);

            root.BuildFilesList(m_rootPath);

            m_items.SetItemsDatas(root);
        }
    }
Esempio n. 2
0
    //****************************************************************************************************
    //
    //****************************************************************************************************

    private void UpdatePicturesList()
    {
        if (httpReq == null)
        {
            if (m_items != null)
            {
                m_items.Clear();

                httpReq = new HTTPReq("https://" + ApplicationMain.instance.options.DBInfos.server_adr + "/picture_list.php", HTTP_METHOD.GET);

                httpReq.SubmitAsync(new HTTPReqDelegate(OnPicListReqCompletion, null));
            }
        }
    }