다음을 통해 공유


AppointmentStore.FindConflictAsync 메서드

정의

오버로드

FindConflictAsync(Appointment)

약속 저장소에서 지정된 약속과 기존 약속 간의 충돌을 나타내는 AppointmentConflictResult 를 반환합니다.

FindConflictAsync(Appointment, DateTime)

약속 저장소에서 지정된 약속과 기존 약속 instance 간의 충돌을 나타내는 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 of AppointmentConflictType.None이 있습니다.

특성

Windows 요구 사항

앱 기능
appointmentsSystem

추가 정보

적용 대상

FindConflictAsync(Appointment, DateTime)

약속 저장소에서 지정된 약속과 기존 약속 instance 간의 충돌을 나타내는 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

약속의 시작 시간은 충돌을 찾는 instance.

반환

성공적으로 완료될 때 AppointmentConflictResult 를 반환하는 비동기 작업입니다. 과거에 발생한 충돌의 경우 반환된 AppointmentConflictResult 개체에는 Type of AppointmentConflictType.None이 있습니다.

특성

Windows 요구 사항

앱 기능
appointmentsSystem

추가 정보

적용 대상