Cheesebaron.MvxPlugins.SMS.Touch.SmsTask.SendSMS C# (CSharp) Method

SendSMS() public method

public SendSMS ( string body, string phoneNumber ) : void
body string
phoneNumber string
return void
        public void SendSMS(string body, string phoneNumber)
        {
            if (!MFMessageComposeViewController.CanSendText)
                return;

            _sms = new MFMessageComposeViewController {Body = body, Recipients = new[] {phoneNumber}};
            _sms.Finished += HandleSmsFinished;

            _modalHost.PresentModalViewController(_sms, true);
        }