SmsMessage 构造函数

定义

重载

SmsMessage()

初始化 SmsMessage 类的新实例。

SmsMessage(String, IEnumerable<String>)

初始化 SmsMessage 类的新实例。

SmsMessage(String, String)

初始化 SmsMessage 类的新实例。

SmsMessage()

Source:
Sms.shared.cs
Source:
Sms.shared.cs

初始化 SmsMessage 类的新实例。

public:
 SmsMessage();
public SmsMessage ();
Public Sub New ()

适用于

SmsMessage(String, IEnumerable<String>)

Source:
Sms.shared.cs
Source:
Sms.shared.cs

初始化 SmsMessage 类的新实例。

public:
 SmsMessage(System::String ^ body, System::Collections::Generic::IEnumerable<System::String ^> ^ recipients);
public SmsMessage (string body, System.Collections.Generic.IEnumerable<string>? recipients);
new Microsoft.Maui.ApplicationModel.Communication.SmsMessage : string * seq<string> -> Microsoft.Maui.ApplicationModel.Communication.SmsMessage
Public Sub New (body As String, recipients As IEnumerable(Of String))

参数

body
String

用于预填充撰写的短信的正文文本。

recipients
IEnumerable<String>

添加到撰写的短信的收件人的集合。

注解

中的 recipients 值为 null 或 空格的值不会添加为收件人。

适用于

SmsMessage(String, String)

Source:
Sms.shared.cs
Source:
Sms.shared.cs

初始化 SmsMessage 类的新实例。

public:
 SmsMessage(System::String ^ body, System::String ^ recipient);
public SmsMessage (string body, string? recipient);
new Microsoft.Maui.ApplicationModel.Communication.SmsMessage : string * string -> Microsoft.Maui.ApplicationModel.Communication.SmsMessage
Public Sub New (body As String, recipient As String)

参数

body
String

用于预填充撰写的短信的正文文本。

recipient
String

添加到撰写短信的单个收件人。

适用于