Freigeben über


RescheduleRequest Klasse

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 (in Microsoft.Crm.Sdk.Proxy.dll)

Syntax

'Declaration
<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

Beispiel

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

Anmerkungen

Message Availability

Damit diese Meldung funktioniert, muss der Anrufer mit dem Server verbunden sein.

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

Die folgende Tabelle enthält die Standardentitäten, die diese Meldung unterstützen. Für die aufgeführten Entitäten muss der Anrufer mit dem Server verbunden sein, damit diese Meldung verfügbar ist.

Entity

Appointment

RecurringAppointmentMaster

ServiceAppointment

Vererbungshierarchie

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

Thread-Sicherheit

Alle öffentlichen statischen Mitglieder (Shared in Visual Basic) dieses Typs sind thread-sicher. Bei Instanzmitgliedern kann keine Garantie für die Thread-Sicherheit übernommen werden.

Plattformen

Development Platforms

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Target Platforms

Windows Server 2008,Windows Server 2012,Windows 7

Change History

Siehe auch

Referenz

RescheduleRequest Mitglieder
Microsoft.Crm.Sdk.Messages Namespace
RescheduleResponse

Weitere Ressourcen

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

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