Eap.Driver.MWN.Driver.QueryPortStatus()

Here are the examples of the csharp api class Eap.Driver.MWN.Driver.QueryPortStatus() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: secs4net
Source File: TCS.ToolModeChange.cs
async Task TCS_ToolModeChange(ToolModeChangeRequest tx)
        {
            if (tx.Mode == ControlMode.Online)
            {
                await TestCommunication();
                await RequestOnline();
                await QueryControlState();
                await DefineLink();
                await QueryAndChangeAccessMode(tx.LoadPorts);

                await Task.Delay(2000);
                await QueryPortStatus();
            }
            else
            {
                await RequestOffline(tx);
            }
        }