SmsMessage 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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 메시지에 추가되는 단일 수신자입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET MAUI