Opc.Ua.SecureChannelContext.SecureChannelContext C# (CSharp) Method

SecureChannelContext() protected method

Initializes a new instance with the context for the current thread.
protected SecureChannelContext ( ) : System.Threading
return System.Threading
        protected SecureChannelContext()
        {        
            SecureChannelContext context = SecureChannelContext.Current;

            if (context != null)
            {
                m_secureChannelId     = context.SecureChannelId;
                m_endpointDescription = context.EndpointDescription;
                m_messageEncoding     = context.MessageEncoding;
            }
        }
        #endregion

Same methods

SecureChannelContext::SecureChannelContext ( string secureChannelId, EndpointDescription endpointDescription, RequestEncoding messageEncoding ) : System.Threading
SecureChannelContext