ISchemaSynchManagerGetPagesByID Method
|
Get a list of pages to sync given a list of page IDs.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax IEnumerable<IPageToSync> GetPagesByID(
IEnumerable<string> pageIds,
string schemaId
)
Function GetPagesByID (
pageIds As IEnumerable(Of String),
schemaId As String
) As IEnumerable(Of IPageToSync)
IEnumerable<IPageToSync^>^ GetPagesByID(
IEnumerable<String^>^ pageIds,
String^ schemaId
)
abstract GetPagesByID :
pageIds : IEnumerable<string> *
schemaId : string -> IEnumerable<IPageToSync>
Parameters
- pageIds
- Type: System.Collections.GenericIEnumerableString
A list of the page IDs. - schemaId
- Type: SystemString
An ID for the relevant schema.
Return Value
Type:
IEnumerableIPageToSyncA list of
pagesRemarks Currently the
schemaId parameter does not change the results of this method, and could just be passed as an empty string.
Use
GetPagesToSync(ISchema) to get a list of pages to sync based on a particular schema.
See Also