NetMQ.OutgoingSocketExtensions.TrySendFrameEmpty C# (CSharp) Method

TrySendFrameEmpty() public static method

Attempt to transmit an empty frame on socket. If message cannot be sent within timeout, return false.
public static TrySendFrameEmpty ( [ socket, System.TimeSpan timeout, bool more = false ) : bool
socket [ the IOutgoingSocket to transmit on
timeout System.TimeSpan The maximum period of time to try to send a message.
more bool set this flag to true to signal that you will be immediately sending another frame (optional: default is false)
return bool
        public static bool TrySendFrameEmpty([NotNull] this IOutgoingSocket socket, TimeSpan timeout, bool more = false)
        {
            return TrySendFrame(socket, timeout, EmptyArray<byte>.Instance, more);
        }

Same methods

OutgoingSocketExtensions::TrySendFrameEmpty ( [ socket, bool more = false ) : bool