NetMQ.OutgoingSocketExtensions.TrySignalError C# (CSharp) Method

TrySignalError() public static method

Attempt to transmit a specific status-signal over this socket that indicates there is an error. If signal cannot be sent immediately, return false.
public static TrySignalError ( [ socket ) : bool
socket [ the IOutgoingSocket to transmit on
return bool
        public static bool TrySignalError([NotNull] this IOutgoingSocket socket)
        {
            return socket.TrySignal(1);
        }