INotificationManagerNotifications Method
|
Retrieves collection of notifications
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 Int32
- Output count of notifications
- startIndex Int32 (Optional)
- Starting index of entries. If not provided, starts from the first entry.
- pageSize Int32 (Optional)
- Number of entries to return. If not provided, returns all entries.
Return Value
IEnumerableINotification[Missing <returns> documentation for "M:Ingeniux.CMS.INotificationManager.Notifications(System.Int32@,System.Int32,System.Int32)"]
See Also