Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

The API client can get the list of available encoding options (for scan configuration).

CxSDKWebService.GetConfigurationSetList Method

 

public CxWSResponseConfigSetList GetConfigurationSetList(
   string SessionID
);

Parameters

Return Value

Available encoding options.

Example

 

internal void Main(string [] args)
{
     String sessionID = args[0];
     CxSDKWebServiceSoapClient cxSDKProxy = new CxSDKWebServiceSoapClient();

     CxWSResponseConfigSetList response = cxSDKProxy.GetConfigurationSetList(sessionID);
     GetConfigurationsSucceded = response.IsSuccesfull;
}

 


 

 

  • No labels