AppointmentStore.FindConflictAsync Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
FindConflictAsync(Appointment) |
Gibt ein AppointmentConflictResult zurück, das einen Konflikt zwischen dem angegebenen Termin und einem vorhandenen Termin im Terminspeicher darstellt. |
FindConflictAsync(Appointment, DateTime) |
Gibt ein AppointmentConflictResult zurück, das einen Konflikt zwischen dem angegebenen Termin und einem vorhandenen Termin instance im Terminspeicher darstellt. |
FindConflictAsync(Appointment)
Gibt ein AppointmentConflictResult zurück, das einen Konflikt zwischen dem angegebenen Termin und einem vorhandenen Termin im Terminspeicher darstellt.
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)
Parameter
- appointment
- Appointment
Der Termin, für den ein Konflikt gesucht wird.
Gibt zurück
Ein asynchroner Vorgang, der nach erfolgreichem Abschluss ein AppointmentConflictResult zurückgibt. Bei Konflikten, die sich in der Vergangenheit befinden, weist das zurückgegebene AppointmentConflictResult-Objekt den TypAppointmentConflictType.None auf.
- Attribute
Windows-Anforderungen
App-Funktionen |
appointmentsSystem
|
Weitere Informationen
Gilt für:
FindConflictAsync(Appointment, DateTime)
Gibt ein AppointmentConflictResult zurück, das einen Konflikt zwischen dem angegebenen Termin und einem vorhandenen Termin instance im Terminspeicher darstellt.
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)
Parameter
- appointment
- Appointment
Der Termin, für den ein Konflikt gesucht wird.
- instanceStartTime
- DateTime DateTimeOffset
Die Startzeit des Termins instance, für den ein Konflikt gesucht wird.
Gibt zurück
Ein asynchroner Vorgang, der nach erfolgreichem Abschluss ein AppointmentConflictResult zurückgibt. Bei Konflikten, die sich in der Vergangenheit befinden, weist das zurückgegebene AppointmentConflictResult-Objekt den TypAppointmentConflictType.None auf.
- Attribute
Windows-Anforderungen
App-Funktionen |
appointmentsSystem
|