| Method name | Method description | Input params | Output params | Exceptions | 
| Count | Returns an integer value with the count of the records that satisfy the search criteria sent  on the QueryType parameter. | QueryType: WSQueryType | Integer |   | 
| List | The list method returns an array containing all the records that satisfy the search criteria sent on the QueryType parameter. | QueryType: WSQueryType |  WSDBRecordArray | If the search does not match any record, the result will be a WSDBRecordArray with length = 0. | 
| RangeList | The RangeList method returns an array containing all the records that satisfy the search criteria sent on the QueryInfo parameter. The QueryInfo is composed by the QueryType and also a date range to filter the records (QueryRange). | QueryInfo: WSQueryInfo | WSDBRecordArray | If the search does not match any record, the result will be a WSDBRecordArray with length = 0. | 
| LoginList | The LoginList method returns an array containing all the records that satisfy the search criteria which is composed by a QueryRange and the login type (successful logins and failed logins).   | Range: WSQueryRange;   Successful:  Boolean   Failed:  Boolean | WSDBRecordArray     | If the search does not match any record, the result will be a WSDBRecordArray with length = 0. |