NetMQ.OutgoingSocketExtensions.SendFrameEmpty C# (CSharp) Method

SendFrameEmpty() public static method

Transmit an empty frame over this socket, block until frame is sent.
public static SendFrameEmpty ( [ socket, bool more = false ) : void
socket [ the IOutgoingSocket to transmit on
more bool set this flag to true to signal that you will be immediately sending another frame (optional: default is false)
return void
        public static void SendFrameEmpty([NotNull] this IOutgoingSocket socket, bool more = false)
        {
            SendFrame(socket, EmptyArray<byte>.Instance, more);
        }