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

EndOpen() public method

Completes an asynchronous operation to open a communication object.
public EndOpen ( IAsyncResult result ) : void
result IAsyncResult
return void
        public void EndOpen(IAsyncResult result)
        {
            if (m_wcfBypassChannel != null)
            {
                m_wcfBypassChannel.EndOpen(result);
                return;
            }

            throw new NotSupportedException("WCF channels must be configured when they are constructed.");
        }