Opc.Ua.WcfChannelBase.EndReconnect C# (CSharp) Method

EndReconnect() public method

Completes an asynchronous operation to close the existing secure channel and open a new one.
public EndReconnect ( IAsyncResult result ) : void
result IAsyncResult
return void
        public void EndReconnect(IAsyncResult result)
        {
            if (m_wcfBypassChannel != null)
            {
                m_wcfBypassChannel.EndReconnect(result);
                return;
            }

            throw new NotSupportedException("WCF channels cannot be reconnected.");
        }