AppointmentStore.FindConflictAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
FindConflictAsync(Appointment) |
指定した予定と予定ストア内の既存の予定との間の競合を表す AppointmentConflictResult を返します。 |
FindConflictAsync(Appointment, DateTime) |
指定した予定と予定ストア内の既存の予定インスタンスの間の競合を表す AppointmentConflictResult を返します。 |
FindConflictAsync(Appointment)
指定した予定と予定ストア内の既存の予定との間の競合を表す AppointmentConflictResult を返します。
public:
virtual IAsyncOperation<AppointmentConflictResult ^> ^ FindConflictAsync(Appointment ^ appointment) = FindConflictAsync;
/// [Windows.Foundation.Metadata.Overload("FindConflictAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment const& appointment);
/// [Windows.Foundation.Metadata.Overload("FindConflictAsync")]
IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment const& appointment);
[Windows.Foundation.Metadata.Overload("FindConflictAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment appointment);
[Windows.Foundation.Metadata.Overload("FindConflictAsync")]
public IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment appointment);
function findConflictAsync(appointment)
Public Function FindConflictAsync (appointment As Appointment) As IAsyncOperation(Of AppointmentConflictResult)
パラメーター
- appointment
- Appointment
競合が検索される予定。
戻り値
正常に完了したときに AppointmentConflictResult を 返す非同期操作。 過去の競合の場合、返された AppointmentConflictResult オブジェクトの Type は AppointmentConflictType.None になります。
- 属性
Windows の要件
アプリの機能 |
appointmentsSystem
|
こちらもご覧ください
適用対象
FindConflictAsync(Appointment, DateTime)
指定した予定と予定ストア内の既存の予定インスタンスの間の競合を表す AppointmentConflictResult を返します。
public:
virtual IAsyncOperation<AppointmentConflictResult ^> ^ FindConflictAsync(Appointment ^ appointment, DateTime instanceStartTime) = FindConflictAsync;
/// [Windows.Foundation.Metadata.Overload("FindConflictAsyncWithInstanceStart")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment const& appointment, DateTime const& instanceStartTime);
/// [Windows.Foundation.Metadata.Overload("FindConflictAsyncWithInstanceStart")]
IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment const& appointment, DateTime const& instanceStartTime);
[Windows.Foundation.Metadata.Overload("FindConflictAsyncWithInstanceStart")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment appointment, System.DateTimeOffset instanceStartTime);
[Windows.Foundation.Metadata.Overload("FindConflictAsyncWithInstanceStart")]
public IAsyncOperation<AppointmentConflictResult> FindConflictAsync(Appointment appointment, System.DateTimeOffset instanceStartTime);
function findConflictAsync(appointment, instanceStartTime)
Public Function FindConflictAsync (appointment As Appointment, instanceStartTime As DateTimeOffset) As IAsyncOperation(Of AppointmentConflictResult)
パラメーター
- appointment
- Appointment
競合が検索される予定。
- instanceStartTime
- DateTime DateTimeOffset
競合が検索される予定インスタンスの開始時刻。
戻り値
正常に完了したときに AppointmentConflictResult を 返す非同期操作。 過去の競合の場合、返された AppointmentConflictResult オブジェクトの Type は AppointmentConflictType.None になります。
- 属性
Windows の要件
アプリの機能 |
appointmentsSystem
|