BondInEtwLinqpadDriver.BondDynamicDriver.ShowConnectionDialog C# (CSharp) Method

ShowConnectionDialog() public method

Displays a dialog prompting the user for connection details.
public ShowConnectionDialog ( IConnectionInfo cxInfo, bool isNewConnection ) : bool
cxInfo IConnectionInfo Connection information, as entered by the user.
isNewConnection bool The isNewConnection parameter will be true if the user /// is creating a new connection rather than editing an existing connection.
return bool
        public override bool ShowConnectionDialog(IConnectionInfo cxInfo, bool isNewConnection)
        {
            var bondInEtwProperties = new BondInEtwProperties(cxInfo);
            return new ConnectionDialog(bondInEtwProperties).ShowDialog() ?? false;
        }