AppointmentOrganizer
AppointmentOrganizer
AppointmentOrganizer
AppointmentOrganizer
Class
Definition
Represents the organizer of an appointment in a calendar.
public : sealed class AppointmentOrganizer : IAppointmentParticipantpublic sealed class AppointmentOrganizer : IAppointmentParticipantPublic NotInheritable Class AppointmentOrganizer Implements IAppointmentParticipant// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Constructors
AppointmentOrganizer() AppointmentOrganizer() AppointmentOrganizer() AppointmentOrganizer()
Initializes a new instance of the AppointmentOrganizer class.
public : AppointmentOrganizer()public AppointmentOrganizer()Public Sub New()// You can use this method in JavaScript.
Properties
Address Address Address Address
Gets or sets a string that communicates the address of the organizer of an appointment. The address is required, inherited from IAppointmentParticipant, and a Simple Mail Transfer Protocol (SMTP) e-mail address. It is also of type String and between 1 and 321 characters in length (non-empty).
public : PlatForm::String Address { get; set; }public string Address { get; set; }Public ReadWrite Property Address As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The address of the organizer of an appointment.
Remarks
When saving an appointment that has an AppointmentOrganizer with an email address, if the address contains one of the characters listed in the table below, which are not allowed for this property, the address will be saved incorrectly and an exception won’t be thrown: ‘<’, ‘>’, ‘:’, ‘;’, ‘\’.
DisplayName DisplayName DisplayName DisplayName
Gets or sets a string that communicates the display name of the organizer of an appointment. The display name is optional, inherited from IAppointmentParticipant, of type String, and a maximum of 256 characters in length.
public : PlatForm::String DisplayName { get; set; }public string DisplayName { get; set; }Public ReadWrite Property DisplayName As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The display name of the organizer of an appointment.