Click or drag to resize

Transmitter5CheckInteroperability Method

Check inter-operability between SwissDecTX and the SwissDec web service, as required by test-case UC011. This call validates all the requirements specified in UC011 of the SwissDec Transmitter Requirements.

Namespace: SwissDecTX
Assembly: SwissDecTX.Transmitter5 (in SwissDecTX.Transmitter5.dll) Version: 5.0.0.0 (5.0.0.0)
Syntax
public void CheckInteroperability(
	string appVersion,
	string monitoringID
)

Parameters

appVersion  String
UserAgent/Version as it appears in your declarations.
monitoringID  String
Your monitoring ID. Contact SwissDec to obtain your own private monitoring ID. You can use "monitoringID" or "tester" as a generic ID of you don't have your own yet.
Example
Calling Transmitter.CheckInteroperability()
   using SwissDecTX;

// ...

       try {

           var tx = new Transmitter5();

           tx.CheckInteroperability(appVersion, "Your Monitoring ID"); // Use "tester" if you don't have a monitoring ID yet

       } catch (Exception ex) {

           MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

       }
See Also