SSMapServicesReorderSites Method
|
Reorders collection of Site Brandings based on provided sequence of names. The order of Site Branding are important, since it will determine with Site Branding gets evaluated and used first.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<string[]> ReorderSites(
string[] data
)
Public Function ReorderSites (
data As String()
) As XHRServiceResponseGeneric(Of String())
public:
virtual XHRServiceResponseGeneric<array<String^>^>^ ReorderSites(
array<String^>^ data
) sealed
abstract ReorderSites :
data : string[] -> XHRServiceResponseGeneric<string[]>
override ReorderSites :
data : string[] -> XHRServiceResponseGeneric<string[]>
Parameters
- data
- Type: SystemString
Array of names of Site Brandings, reflecting the updated order
Examples
Sample JSON input
{
"data": ["Support", "Corporation"]
}
Return Value
Type:
XHRServiceResponseGenericStringArray of Site Branding names reflecting the updated order
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": ["Support", "Corporation"]
}
See Also