Datapolis Process System SDK

Search:

Contents
:
IndexBookmarkPrint
Home > WBInterface > Methods > GetWBListInfo

GetWBListInfo

 

 

Function returns WBListInfo type, if you want to know all members of this class check Class Reference.

try
{
    WBInterfaceWebService.WBInterfaceSoapClient client = CreateSoapClient();
   
    WBListInfo wbListInfo = client.GetWBListInfo("listUrl");
   
    if (wbListInfo != null)
    {
        //some code
    }
    else
    {
        MessageBox.Show(this, "List cannot be found. Make sure you typed list address correctly.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    }
}
catch (Exception exc)
{
    MessageBox.Show(this, exc.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}