次の方法で共有


TetheringEntitlementCheckTrigger クラス

定義

バックグラウンド タスクの実行をトリガーするテザリング イベントを表します。

public ref class TetheringEntitlementCheckTrigger sealed : IBackgroundTrigger
/// [Windows.Foundation.Metadata.Activatable(393216, "Windows.Foundation.UniversalApiContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 393216)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class TetheringEntitlementCheckTrigger final : IBackgroundTrigger
[Windows.Foundation.Metadata.Activatable(393216, "Windows.Foundation.UniversalApiContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 393216)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class TetheringEntitlementCheckTrigger : IBackgroundTrigger
function TetheringEntitlementCheckTrigger()
Public NotInheritable Class TetheringEntitlementCheckTrigger
Implements IBackgroundTrigger
継承
Object Platform::Object IInspectable TetheringEntitlementCheckTrigger
属性
実装

Windows の要件

デバイス ファミリ
Windows 10, version 1803 (10.0.17134.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v6.0 で導入)
アプリの機能
networkConnectionManagerProvisioning

次の例は、テザリング トリガーを作成して登録する方法を示しています。

using Windows.ApplicationModel.Background;

void RegisterTetheringTrigger()
{
  bool taskAlreadyRegistered = false;
  string exampleTaskName = "MyEntitlementTask";

  foreach (var task in BackgroundTaskRegistration.AllTasks)
  {
      if (task.Value.Name == exampleTaskName)
      {
          taskAlreadyRegistered = true;
          break;
      }
  }

  if (!taskAlreadyRegistered)
  {
      var builder = new BackgroundTaskBuilder();

      builder.Name = exampleTaskName;
      builder.TaskEntryPoint = "Sample.TheActualBackgroundTask";
      var trigger = new TetheringEntitlementCheckTrigger();
      builder.SetTrigger(trigger);
      builder.Register();
  }
}

注釈

このトリガーが登録され、携帯電話の顧客が Windows UI を介してテザリングを有効にしようとすると、バックグラウンド タスクがトリガーされます。 モバイル ネットワークオペレーターは、トリガーされたバックグラウンド タスクを使用して、携帯電話の顧客がエンタイトルメントに基づいてテザリング機能を使用できるかどうかを Windows と通信できます。

バックグラウンド タスクは、携帯電話会社の Country and Operator Settings Asset (COSA) データベースに正しく登録されている場合にのみトリガーされます。 詳細については、「 デスクトップ COSA/APN データベース設定 」を参照してください。

警告

テザリング トリガーが複数回再登録された場合、テザリング トリガーは期待どおりに動作しない可能性があります

コンストラクター

TetheringEntitlementCheckTrigger()

テザリング イベント トリガーの新しいインスタンスを作成して初期化します。

適用対象