IPublishingManagerTargets(Int32, IPublishingProfile, Int32, Int32) Method
|
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 Int32
- Total count of entries
- profile IPublishingProfile (Optional)
- Publishing profile that the publishing targets belong to. When not provided, returns all publishing targets.
- pageSize Int32 (Optional)
- Number of entries to return. If not provided, returns all entries.
- startIndex Int32 (Optional)
- Starting index of entries. If not provided, starts from the first entry.
Return Value
IEnumerableIPublishingTargetCollection of publishing targets.
See Also