Opc.Ua.NetworkTester.Server.Server C# (CSharp) Method

Server() public method

Initializes the server with the listener and server url.
public Server ( string listenerUrl, string serverUrl ) : System
listenerUrl string
serverUrl string
return System
        public Server(string listenerUrl, string serverUrl)
        {
            m_listenerUrl = new Uri(listenerUrl);
            m_serverUrl = new Uri(serverUrl);
        }