Partilhar via


Classe RescheduleRequest

Aplica-se a: CRM 2015 on-prem, CRM Online

Contains the data that is needed to reschedule an appointment, recurring appointment, or service appointment (service activity).

Namespace: Microsoft.Crm.Sdk.Messages
Assembly: Microsoft.Crm.Sdk.Proxy (em Microsoft.Crm.Sdk.Proxy.dll)

Sintaxe

'Declaração
<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

Exemplo

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

Comentários

Message Availability

Para que esta mensagem funcione, o chamador deve estar conectado ao servidor.

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

A tabela a seguir mostra as entidades padrão que oferecem suporte a esta mensagem. Para as entidades listadas, o chamador deve estar conectado ao servidor para que esta mensagem fique disponível.

Entity

Appointment

RecurringAppointmentMaster

ServiceAppointment

Hierarquia de Herança

System.Object
   Microsoft.Xrm.Sdk.OrganizationRequest
    Microsoft.Crm.Sdk.Messages.RescheduleRequest

Segurança do Thread

Todos os membros estáticos (Shared in Visual Basic) desse tipo são protegidos por thread. Não há nenhum garantia de que os membros de instância sejam protegidos por thread.

Plataformas

Plataformas de desenvolvimento

Windows Vista, Windows Server 2003 e

Plataformas de destino

Windows Vista,Windows XP

Change History

Consulte também

Referência

Membros de RescheduleRequest
Namespace Microsoft.Crm.Sdk.Messages
RescheduleResponse

Outros recursos

Schedule and Appointment Entities
Sample: Reschedule and Cancel a Recurring Appointment

Send comments about this topic to Microsoft.
© 2014 Microsoft Corporation. All rights reserved.