Gets collection of calendars.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
EntityCollection<CalendarEntity> GetCalendars(
	Nullable<Guid> ownerId,
	string nameMatch,
	int pageNumber,
	int pageSize,
	out int recordCount
)
Visual Basic
Function GetCalendars ( 
	ownerId As Nullable(Of Guid),
	nameMatch As String,
	pageNumber As Integer,
	pageSize As Integer,
	<OutAttribute> ByRef recordCount As Integer
) As EntityCollection(Of CalendarEntity)
Visual C++
EntityCollection<CalendarEntity^>^ GetCalendars(
	Nullable<Guid> ownerId, 
	String^ nameMatch, 
	int pageNumber, 
	int pageSize, 
	[OutAttribute] int% recordCount
)
F#
abstract GetCalendars : 
        ownerId : Nullable<Guid> * 
        nameMatch : string * 
        pageNumber : int * 
        pageSize : int * 
        recordCount : int byref -> EntityCollection<CalendarEntity> 

Parameters

ownerId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Calendar owner id.
nameMatch
Type: System..::..String
Calendar name to match.
pageNumber
Type: System..::..Int32
Page number.
pageSize
Type: System..::..Int32
Page size.
recordCount
Type: System..::..Int32%
Total number of records.

Return Value

Type: EntityCollection<(Of <(<'CalendarEntity>)>)>
Collection of calendars.

See Also