Share via


AppointmentProposal Constructors

Definition

Overloads

AppointmentProposal()

Initializes a new instance of the AppointmentProposal class.

AppointmentProposal(Nullable<DateTime>, Nullable<DateTime>, Guid, String, ProposalParty[])

Initializes a new instance of the AppointmentProposal class setting the start, end, site ID, site name, and proposal parties.

AppointmentProposal()

Initializes a new instance of the AppointmentProposal class.

public:
 AppointmentProposal();
public AppointmentProposal ();
Public Sub New ()

Applies to

AppointmentProposal(Nullable<DateTime>, Nullable<DateTime>, Guid, String, ProposalParty[])

Initializes a new instance of the AppointmentProposal class setting the start, end, site ID, site name, and proposal parties.

public:
 AppointmentProposal(Nullable<DateTime> start, Nullable<DateTime> end, Guid siteId, System::String ^ siteName, cli::array <Microsoft::Crm::Sdk::Messages::ProposalParty ^> ^ proposalParties);
public AppointmentProposal (DateTime? start, DateTime? end, Guid siteId, string siteName, Microsoft.Crm.Sdk.Messages.ProposalParty[] proposalParties);
new Microsoft.Crm.Sdk.Messages.AppointmentProposal : Nullable<DateTime> * Nullable<DateTime> * Guid * string * Microsoft.Crm.Sdk.Messages.ProposalParty[] -> Microsoft.Crm.Sdk.Messages.AppointmentProposal
Public Sub New (start As Nullable(Of DateTime), end As Nullable(Of DateTime), siteId As Guid, siteName As String, proposalParties As ProposalParty())

Parameters

start
Nullable<DateTime>

The proposed appointment start date and time.

end
Nullable<DateTime>

The proposed appointment end date and time.

siteId
Guid

The ID of the site for the proposed appointment.

siteName
String

The name of the site for the proposed appointment.

proposalParties
ProposalParty[]

An array of parties needed for the proposed appointment.

Applies to