AppNotificationBuilder.AddText メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AddText(String) |
アプリ通知の XML ペイロードにテキスト ブロックを追加します。 |
AddText(String, AppNotificationTextProperties) |
表示オプションとローカライズ オプションを含むテキストブロックを、アプリ通知の XML ペイロードに追加します。 |
AddText(String)
アプリ通知の XML ペイロードにテキスト ブロックを追加します。
public:
virtual AppNotificationBuilder ^ AddText(Platform::String ^ text) = AddText;
/// [Windows.Foundation.Metadata.Overload("AddText")]
AppNotificationBuilder AddText(winrt::hstring const& text);
[Windows.Foundation.Metadata.Overload("AddText")]
public AppNotificationBuilder AddText(string text);
function addText(text)
Public Function AddText (text As String) As AppNotificationBuilder
パラメーター
- text
-
String
Platform::String
winrt::hstring
アプリ通知に表示されるテキストを含む文字列。
戻り値
追加のメソッド呼び出しをチェーンできるように、AppNotificationBuilder インスタンスを返します。
- 属性
例
次の例では、アプリ通知の XML ペイロードにテキスト ブロックを追加する方法を示します。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
</toast>
注釈
アプリ通知には、最大 3 つのテキスト要素を追加できます。 この制限を超えると、エラーがスローされます。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。
適用対象
AddText(String, AppNotificationTextProperties)
表示オプションとローカライズ オプションを含むテキストブロックを、アプリ通知の XML ペイロードに追加します。
public:
virtual AppNotificationBuilder ^ AddText(Platform::String ^ text, AppNotificationTextProperties ^ properties) = AddText;
/// [Windows.Foundation.Metadata.Overload("AddText2")]
AppNotificationBuilder AddText(winrt::hstring const& text, AppNotificationTextProperties const& properties);
[Windows.Foundation.Metadata.Overload("AddText2")]
public AppNotificationBuilder AddText(string text, AppNotificationTextProperties properties);
function addText(text, properties)
Public Function AddText (text As String, properties As AppNotificationTextProperties) As AppNotificationBuilder
パラメーター
- text
-
String
Platform::String
winrt::hstring
アプリ通知に表示されるテキストを含む文字列。
- properties
- AppNotificationTextProperties
AppNotificationTextProperties テキストの表示プロパティとローカライズ プロパティを指定します。
戻り値
追加のメソッド呼び出しをチェーンできるように、AppNotificationBuilder インスタンスを返します。
- 属性
例
次の例では、アプリ通知の XML ペイロードにテキスト ブロックを追加する方法を示します。
var notification = new AppNotificationBuilder()
.AddText("Notification text.", new AppNotificationTextProperties().SetMaxLines(2))
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text hint-maxLines='2'>Notification text.</text>
</binding>
</visual>
</toast>
注釈
アプリ通知には、最大 3 つのテキスト要素を追加できます。 この制限を超えると、エラーがスローされます。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。