C# Class DDay.iCal.Event

Inheritance: RecurringComponent, IEvent
Afficher le fichier Open project: nachocove/DDay-iCal-Xamarin Class Usage Examples

Méthodes publiques

Méthode Description
Event ( ) : System

Constructs an Event object, with an iCalObject (usually an iCalendar object) as its parent.

IsActive ( ) : bool

Determines whether or not the Event is actively displayed as an upcoming or occurred event.

OccursAt ( IDateTime DateTime ) : bool

Use this method to determine if an event begins at a given date and time.

OccursOn ( IDateTime DateTime ) : bool

Use this method to determine if an event occurs on a given date. This event should be called only after the Evaluate method has calculated the dates for which this event occurs.

Méthodes protégées

Méthode Description
OnDeserialized ( StreamingContext context ) : void
OnDeserializing ( StreamingContext context ) : void

Private Methods

Méthode Description
ExtrapolateTimes ( ) : void
Initialize ( ) : void

Method Details

Event() public méthode

Constructs an Event object, with an iCalObject (usually an iCalendar object) as its parent.
public Event ( ) : System
Résultat System

IsActive() public méthode

Determines whether or not the Event is actively displayed as an upcoming or occurred event.
public IsActive ( ) : bool
Résultat bool

OccursAt() public méthode

Use this method to determine if an event begins at a given date and time.
public OccursAt ( IDateTime DateTime ) : bool
DateTime IDateTime The date and time to test.
Résultat bool

OccursOn() public méthode

Use this method to determine if an event occurs on a given date. This event should be called only after the Evaluate method has calculated the dates for which this event occurs.
public OccursOn ( IDateTime DateTime ) : bool
DateTime IDateTime The date to test.
Résultat bool

OnDeserialized() protected méthode

protected OnDeserialized ( StreamingContext context ) : void
context System.Runtime.Serialization.StreamingContext
Résultat void

OnDeserializing() protected méthode

protected OnDeserializing ( StreamingContext context ) : void
context System.Runtime.Serialization.StreamingContext
Résultat void