C# 클래스 DDay.iCal.Event

상속: RecurringComponent, IEvent
파일 보기 프로젝트 열기: nachocove/DDay-iCal-Xamarin 1 사용 예제들

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
OnDeserialized ( StreamingContext context ) : void
OnDeserializing ( StreamingContext context ) : void

비공개 메소드들

메소드 설명
ExtrapolateTimes ( ) : void
Initialize ( ) : void

메소드 상세

Event() 공개 메소드

Constructs an Event object, with an iCalObject (usually an iCalendar object) as its parent.
public Event ( ) : System
리턴 System

IsActive() 공개 메소드

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

OccursAt() 공개 메소드

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.
리턴 bool

OccursOn() 공개 메소드

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.
리턴 bool

OnDeserialized() 보호된 메소드

protected OnDeserialized ( StreamingContext context ) : void
context System.Runtime.Serialization.StreamingContext
리턴 void

OnDeserializing() 보호된 메소드

protected OnDeserializing ( StreamingContext context ) : void
context System.Runtime.Serialization.StreamingContext
리턴 void