Classe RescheduleRequest
Si applica a: CRM 2015 on-prem, CRM Online
Contains the data that is needed to reschedule an appointment, recurring appointment, or service appointment (service activity).
Spazio dei nomi: Microsoft.Crm.Sdk.Messages
Assembly: Microsoft.Crm.Sdk.Proxy (in Microsoft.Crm.Sdk.Proxy.dll)
Sintassi
'Dichiarazione
<DataContractAttribute(Namespace:="https://schemas.microsoft.com/crm/2011/Contracts")> _
Public NotInheritable Class RescheduleRequest
Inherits OrganizationRequest
[DataContractAttribute(Namespace="https://schemas.microsoft.com/crm/2011/Contracts")]
public sealed class RescheduleRequest : OrganizationRequest
Esempio
The following example shows how to use this message. For this sample to work correctly, you must be connected to the server to get an IOrganizationService interface. For the complete sample, see the link later in this topic.
#region Reschedule an instance of recurring appointment
// Update the scheduled start and end dates of the appointment
// to reschedule it.
Appointment updateAppointment = new Appointment
{
ActivityId = individualAppointments.Entities.Select(x => (Appointment)x).First().ActivityId,
ScheduledStart = individualAppointments.Entities.Select(x => (Appointment)x).First().ScheduledStart.Value.AddHours(1),
ScheduledEnd = individualAppointments.Entities.Select(x => (Appointment)x).First().ScheduledEnd.Value.AddHours(2)
};
RescheduleRequest reschedule = new RescheduleRequest
{
Target = updateAppointment
};
RescheduleResponse rescheduled = (RescheduleResponse)_serviceProxy.Execute(reschedule);
Console.WriteLine("Rescheduled the second instance of the recurring appointment.");
#endregion Reschedule an instance of recurring appointment
Note
Message Availability
Affinché questo messaggio funzioni, il chiamante deve essere connesso al server.
Usage
Pass an instance of this class to the Execute method, which returns an instance of the RescheduleResponse class.
Privileges and Access Rights
To perform this action, the caller must have privileges on the specified entity in the Target property and access rights on the specified record in the Target property. For a list of the required privileges, see Reschedule Privileges.
Supported Entities
Nella tabella seguente vengono mostrate le entità predefinite che supportano questo messaggio. Per le entità elencate, il chiamante deve essere connesso al server per rendere disponibile il messaggio.
Entity |
---|
Appointment |
RecurringAppointmentMaster |
ServiceAppointment |
Gerarchia ereditarietà
System.Object
Microsoft.Xrm.Sdk.OrganizationRequest
Microsoft.Crm.Sdk.Messages.RescheduleRequest
Thread Safety
Tutti i membri statici pubblici (Shared in Visual Basic) di questo tipo sono thread-safe. Non è garantito che i membri di istanza siano thread-safe.
Piattaforme
Piattaforme di sviluppo
Windows Vista, Windows Server 2003 e
Piattaforme di destinazione
Windows Vista,Windows XP
Change History
Vedere anche
Riferimento
Membri RescheduleRequest
Spazio dei nomi Microsoft.Crm.Sdk.Messages
RescheduleResponse
Altre risorse
Schedule and Appointment Entities
Sample: Reschedule and Cancel a Recurring Appointment
Send comments about this topic to Microsoft.
© 2014 Microsoft Corporation. All rights reserved.