Signal.Messages.OutgoingEncryptedMessage.withBody C# (CSharp) Method

withBody() public method

public withBody ( string body ) : OutgoingTextMessage
body string
return OutgoingTextMessage
        public override OutgoingTextMessage withBody(string body)
        {
            return new OutgoingEncryptedMessage(this, body);
        }
    }
OutgoingEncryptedMessage