다음을 통해 공유


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

구성된 SMS 메시지를 미리 채우기 위해 사용되는 본문 텍스트입니다.

recipients
IEnumerable<String>

구성된 SMS 메시지에 추가되는 받는 사람의 컬렉션입니다.

설명

또는 null 공백의 recipients 값은 받는 사람으로 추가되지 않습니다.

적용 대상

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

구성된 SMS 메시지를 미리 채우기 위해 사용되는 본문 텍스트입니다.

recipient
String

구성된 SMS 메시지에 추가되는 단일 수신자입니다.

적용 대상