NetMQ.OutgoingSocketExtensions.SendFrame C# (CSharp) Method

SendFrame() public static method

Transmit a byte-array of data over this socket, block until frame is sent.
public static SendFrame ( [ socket, [ data, bool more = false ) : void
socket [ the IOutgoingSocket to transmit on
data [ the byte-array of data to send
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 SendFrame([NotNull] this IOutgoingSocket socket, [NotNull] byte[] data, bool more = false)
        {
            SendFrame(socket, data, data.Length, more);
        }

Same methods

OutgoingSocketExtensions::SendFrame ( [ socket, [ data, int length, bool more = false ) : void