Called by the admin screens to search for users Calls: xct_spACGetAdminUserSearch


Namespace: ctAC
Assembly: ctAC (in ctAC.dll)

Syntax

Visual Basic (Declaration)
<WebMethodAttribute(Description := "Called by the admin screens to search for users", MessageName := "getAdminUserSearch"), _
 SoapHeaderAttribute("myCTACHeader", Direction := SoapHeaderDirection.In)>

Public Function getAdminUserSearch( _ 
   ByVal currentPageNumber As String,  _ 
   ByVal pageSize As String,  _ 
   ByVal adminUserSearchParams As String _ 
) As DataSet
C#
[WebMethodAttribute(Description = "Called by the admin screens to search for users", MessageName = "getAdminUserSearch")]
[SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)]
public DataSet getAdminUserSearch(
   string currentPageNumber,
   string pageSize,
   string adminUserSearchParams
)
C++
[WebMethodAttribute(Description = L"Called by the admin screens to search for users", MessageName = L"getAdminUserSearch")]
[SoapHeaderAttribute(L"myCTACHeader", Direction = SoapHeaderDirection::In)]
public:
 DataSet getAdminUserSearch(
   String currentPageNumber,
   String pageSize,
   String adminUserSearchParams
) sealed 
J#
/** @attribute WebMethodAttribute(Description = "Called by the admin screens to search for users", MessageName = "getAdminUserSearch") */
/** @attribute SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In) */
public DataSet getAdminUserSearch(
   string currentPageNumber,
   string pageSize,
   string adminUserSearchParams
)
JScript
public 

   WebMethodAttribute(Description = "Called by the admin screens to search for users", MessageName = "getAdminUserSearch")
   SoapHeaderAttribute("myCTACHeader", Direction = SoapHeaderDirection.In)
function getAdminUserSearch(
   currentPageNumber : String,
   pageSize : String,
   adminUserSearchParams : String
) : DataSet

Parameters

currentPageNumber
pageSize
adminUserSearchParams

See Also