AppointmentStore.FindConflictAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
FindConflictAsync(Appointment) |
Renvoie un AppointmentConflictResult représentant un conflit entre le rendez-vous spécifié et un rendez-vous existant dans le magasin de rendez-vous. |
FindConflictAsync(Appointment, DateTime) |
Renvoie un AppointmentConflictResult représentant un conflit entre le rendez-vous spécifié et un rendez-vous existant instance dans le magasin de rendez-vous. |
FindConflictAsync(Appointment)
Renvoie un AppointmentConflictResult représentant un conflit entre le rendez-vous spécifié et un rendez-vous existant dans le magasin de rendez-vous.
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)
Paramètres
- appointment
- Appointment
Nomination pour laquelle un conflit est recherché.
Retours
Opération asynchrone qui retourne un AppointmentConflictResult en cas de réussite. Pour les conflits qui se trouvent dans le passé, l’objet AppointmentConflictResult renvoyé aura un TypeAppointmentConflictType.None.
- Attributs
Configuration requise pour Windows
Fonctionnalités de l’application |
appointmentsSystem
|
Voir aussi
S’applique à
FindConflictAsync(Appointment, DateTime)
Renvoie un AppointmentConflictResult représentant un conflit entre le rendez-vous spécifié et un rendez-vous existant instance dans le magasin de rendez-vous.
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)
Paramètres
- appointment
- Appointment
Nomination pour laquelle un conflit est recherché.
- instanceStartTime
- DateTime DateTimeOffset
Heure de début du rendez-vous instance pour laquelle un conflit est recherché.
Retours
Opération asynchrone qui retourne un AppointmentConflictResult en cas de réussite. Pour les conflits qui se trouvent dans le passé, l’objet AppointmentConflictResult renvoyé aura un TypeAppointmentConflictType.None.
- Attributs
Configuration requise pour Windows
Fonctionnalités de l’application |
appointmentsSystem
|