NetMQ.OutgoingSocketExtensions.SignalError C# (CSharp) Method

SignalError() public static method

Transmit a specific status-signal over this socket that indicates there is an error.
public static SignalError ( [ socket ) : void
socket [ the IOutgoingSocket to transmit on
return void
        public static void SignalError([NotNull] this IOutgoingSocket socket)
        {
            socket.Signal(1);
        }