Opc.Ua.Bindings.TcpServerChannel.ForceChannelFault C# (CSharp) Method

ForceChannelFault() protected method

Forces the channel into a faulted state as a result of a fatal error.
protected ForceChannelFault ( Exception exception, uint defaultCode, string format ) : void
exception System.Exception
defaultCode uint
format string
return void
        protected void ForceChannelFault(Exception exception, uint defaultCode, string format, params object[] args)
        {
            ForceChannelFault(ServiceResult.Create(exception, defaultCode, format, args));
        }

Same methods

TcpServerChannel::ForceChannelFault ( ServiceResult reason ) : void
TcpServerChannel::ForceChannelFault ( uint statusCode, string format ) : void