ISchemaSynchManagerGetPagesByID Method
|
Get a list of pages to sync given a list of page IDs.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 IEnumerableString
- A list of the page IDs.
- schemaId String
- An ID for the relevant schema.
Return Value
IEnumerableIPageToSyncA list of
pages
RemarksCurrently 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