AppointmentStore.FindConflictAsync 方法

定义

重载

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 对象的类型为 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 对象的类型为 AppointmentConflictType.None

属性

Windows 要求

应用功能
appointmentsSystem

另请参阅

适用于