INotificationManagerNotifications Method
|
Retrieves collection of notifications
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IEnumerable<INotification> Notifications(
out int c,
int startIndex = 0,
int pageSize = 128
)
Function Notifications (
<OutAttribute> ByRef c As Integer,
Optional startIndex As Integer = 0,
Optional pageSize As Integer = 128
) As IEnumerable(Of INotification)
IEnumerable<INotification^>^ Notifications(
[OutAttribute] int% c,
int startIndex = 0,
int pageSize = 128
)
abstract Notifications :
c : int byref *
?startIndex : int *
?pageSize : int
(* Defaults:
let _startIndex = defaultArg startIndex 0
let _pageSize = defaultArg pageSize 128
*)
-> IEnumerable<INotification>
Parameters
- c
- Type: SystemInt32
Output count of notifications - startIndex (Optional)
- Type: SystemInt32
Starting index of entries. If not provided, starts from the first entry. - pageSize (Optional)
- Type: SystemInt32
Number of entries to return. If not provided, returns all entries.
Return Value
Type:
IEnumerableINotification[Missing <returns> documentation for "M:Ingeniux.CMS.INotificationManager.Notifications(System.Int32@,System.Int32,System.Int32)"]
See Also