IPublishingManagerTargets Method (Int32, IPublishingProfile, Int32, Int32)
|
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IEnumerable<IPublishingTarget> Targets(
out int count,
IPublishingProfile profile = null,
int pageSize = -1,
int startIndex = -1
)
Function Targets (
<OutAttribute> ByRef count As Integer,
Optional profile As IPublishingProfile = Nothing,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IPublishingTarget)
IEnumerable<IPublishingTarget^>^ Targets(
[OutAttribute] int% count,
IPublishingProfile^ profile = nullptr,
int pageSize = -1,
int startIndex = -1
)
abstract Targets :
count : int byref *
?profile : IPublishingProfile *
?pageSize : int *
?startIndex : int
(* Defaults:
let _profile = defaultArg profile null
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<IPublishingTarget>
Parameters
- count
- Type: SystemInt32
Total count of entries - profile (Optional)
- Type: Ingeniux.CMSIPublishingProfile
Publishing profile that the publishing targets belong to. When not provided, returns all publishing targets. - pageSize (Optional)
- Type: SystemInt32
Number of entries to return. If not provided, returns all entries. - startIndex (Optional)
- Type: SystemInt32
Starting index of entries. If not provided, starts from the first entry.
Return Value
Type:
IEnumerableIPublishingTargetCollection of publishing targets.
See Also