NetMQ.OutgoingSocketExtensions.SendMore C# (CSharp) Method

SendMore() private method

private SendMore ( [ socket, [ message, [ encoding, bool dontWait = false ) : IOutgoingSocket
socket [
message [
encoding [
dontWait bool
return IOutgoingSocket
        public static IOutgoingSocket SendMore([NotNull] this IOutgoingSocket socket, [NotNull] string message, [NotNull] Encoding encoding, bool dontWait = false)
        {
            socket.Send(message, encoding, dontWait, true);
            return socket;
        }

Same methods

OutgoingSocketExtensions::SendMore ( [ socket, [ data, bool dontWait = false ) : IOutgoingSocket
OutgoingSocketExtensions::SendMore ( [ socket, [ data, int length, bool dontWait = false ) : IOutgoingSocket