iCal Class |
Namespace: NetQuarry.Mail
The iCal type exposes the following members.
Name | Description | |
---|---|---|
Company | ||
Created |
Gets/sets the created date/time (CREATED) for the iCalendar item, in UTC.
| |
Description |
Gets/sets the description (DESCRIPTION) for the iCalendar.
| |
End |
Gets/sets the end date/time (DTEND) for the iCalendar item, in UTC.
| |
Filename |
Gets/sets the filename for the iCalendar object. The Filename should not have an extension or path.
The current default value is "meeting".
| |
FullFilename |
Gets the full iCalendar filename (with a .ics extension) based on the Filename.
The default is "meeting.ics".
| |
ID |
Gets/sets the iCalendar unique identifier (UID). The ID is used to associate a series of iCalendar items as
pertaining to the same schedule item. For example, creating a new meeting, rescheduling the meeting, then cancelling
the meeting. The series of related items sharing the same ID are ordered according to the SequenceNumber | |
Language | ||
Location |
Gets/sets the location (LOCATION) for the iCalendar.
| |
OrganizerEmail |
The email of the organizer of the iCalendar item. This is used for the "mailto" part of the "ORGANIZER" portion of the iCalendar
which is combined with OrganizerName using CalAddress(String, String) to specify the organizer (ORGANIZER).
| |
OrganizerName |
The name of the organizer of the iCalendar item. This is used for the "CN" part of the "ORGANIZER" portion of the iCalendar
which is combined with OrganizerEmail using CalAddress(String, String) to specify the organizer (ORGANIZER).
| |
Privacy |
Gets/sets the "CLASS" attribute. Values can be: PUBLIC (default), PRIVATE or CONFIDENTIAL
| |
Product |
Gets/sets the product originating the iCalendar. Together with the Company and Language,
this is used to construct the ProductID (PRODID). The default is obtained from the "TITLE" property of the IAppContext.
| |
Recurrence |
Gets/Sets the Recurrence pattern for this appointment
| |
ReminderMinutes |
Gets/sets how many minutes before the iCalendar Start time a reminder should be given
to the user in his scheduling system. If the value is zero or less then no reminder is specified.
If a reminder is specified, the constructed iCalendar will include a VALARM with a TRIGGER.
The current default is 15 minutes, however, this is subject to change in the future and a specific
value should be provided if a specific reminder period is desired.
| |
Resources |
Gets/sets the resources (RESOURCE:) for the iCalendar.
| |
SequenceNumber |
Gets/sets the iCalendar sequence number (SEQUENCE) identifying the order of iCalendar items sharing the same ID (UID).
| |
Start |
Gets/sets the start date/time (DTSTART) for the iCalendar item, in UTC.
| |
Subject |
The subject (SUMMARY) of the iCalendar item.
| |
TimeZone |
Gets/Sets the timezone TimeZone object.
| |
TZID |
Gets/Sets the TZID to use for Start/End date
| |
URL |
Gets/Sets the URL for the iCalendar
|
Name | Description | |
---|---|---|
AsAttachment |
Construct the iCalendar file in memory and return it as an email attachment.
Internally GetContent(iCalNotificationType, String) is used to construct the iCalendar text.
| |
AsAttachments |
Construct the iCalendar file in memory and return it as an email attachment in a single-item array of attachments.
In this form the iCalendar is ready for immediate use when sending an email with no additional attachments.
Internally GetContent(iCalNotificationType, String) is used to construct the iCalendar text and AsAttachment(iCalNotificationType, String) is used
to construct the attachment.
| |
CalAddress |
Constructs an iCalendar MAILTO URI as defined by RFC 1738.
| |
CreateGotoMeeting |
IN DEVELOPMENT - Generates a GotoMeeting invitation to be included in the iCalendar Description.
| |
Equals | (Inherited from Object.) | |
Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
GetContent |
Gets the iCalendar content string. Normally this is included as the content for a textfile attachment, with a .ics extension, to an email
| |
GetEventContent |
Returns the event content
| |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetSubscription |
Gets a VCALENDAR subscription for the provided list of events.
| |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | (Inherited from Object.) |
Name | Description | |
---|---|---|
EqualValue |
Determines if the object value is equal to another object. If the two objects are null, then this returns true.
There is special handling for guid comparisons (since a guid could be a string formatted in up to 3 different ways).
If the special guid handling is not performed, then the object.Equals method is used.
(Defined by EAPUtil.) |