Datapolis Process System SDK

Search:

Contents
:
IndexBookmarkPrint
Home > WBInterface > Methods > GetWBActions

GetWBActions

 

 

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

private void GetWBActions()
{
    try
    {
        WBInterfaceWebService.WBInterfaceSoapClient client = CreateSoapClient();
        ArrayOfInt ids = new ArrayOfInt();
        WBActions wbActions = client.GetWBActions("listUrl", ids);
  
        if (wbActions != null)
        {
            //Put your code here
        }
    }
    catch (Exception exc)
    {
    }
}