GetSubItemsParams Structure
Use the GetSubItemsParams structure to contain optional parameters used in a getSubItems method.
The GetSubItemsParams structure is used in the WebCatalogService Service.
GetSubItemsParams Structure Fields
Fields | Descriptions |
---|---|
GetSubItemsFilter filter |
For internal use only. |
boolean includeACL |
If set to TRUE, then ACL information is included in the resulting ItemInfo structures. |
int withPermission and int withPermissionMask |
Specifies that you want to filter the resulting items collection by access level. The only items included in the result are those for which the following expression is true: (itemPermission & withPermissionMask) = (withPermission & withPermissionMask) where |
int withAttributes and int withAttributesMask |
Specifies that you want to filter the resulting items collection by attribute flags. The only items included in the result are those for which the following expression is true: (itemAttributes & withAttributesMask) = (withAttributes & withAttributesMask) Where |