Public Member Functions | |
| HRESULT | Clear (void) |
| HRESULT | AddClient ([in] IRdNtClientInfo *pRdNtClientInfo) |
| HRESULT | RemoveClient ([in] RtCSNID csnidClient) |
| HRESULT | GetClientInfo ([in] RtCSNID csnidClient,[out, retval] IRdNtClientInfo **ppRdNtClientInfo) |
| HRESULT | GetNumClients ([out, retval] RtDWORD *pdwNumClients) |
| HRESULT | GetClientInfoByIndex ([in] RtDWORD dwIndex,[out, retval] IRdNtClientInfo **ppRdNtClientInfo) |
| HRESULT | GetFirstClient ([out, retval] IRdNtClientInfo **ppRdNtClientInfo) |
| HRESULT | GetNextClient ([out, retval] IRdNtClientInfo **ppRdNtClientInfo) |
| HRESULT | ServerName ([out, retval] BSTR *pbstrName) |
| HRESULT | ServerName ([in] BSTR bstrName) |
|
|
Call to erase all records. |
|
|
Add client to list. If it already exist, the old one will be replaced.
|
|
|
Remove client's info by client session ID.
|
|
||||||||||||
|
Find client's info by client session ID.
|
|
|
Retrieve number of records.
|
|
||||||||||||
|
Get client's info by index.
nNumClients = RdNtClientsList.GetNumClients; for (i = 0; i < nNumClients; i++) { RdNtClientInfo = GetClientInfoByIndex(i); bstrClientName = RdNtClientInfo.Name(); System.Trace(bstrClientName); }
|
|
|
Get first list's record.
for (RdNtClientInfo = RdNtClientsList.GetFirstClient();
RdNtClientInfo != null;
RdNtClientInfo = RdNtClientsList.GetNextClient())
{
bstrClientName = RdNtClientInfo.Name();
System.Trace(bstrClientName);
}
|
|
|
Get next list's record.
|
|
|
Use this property to read server's name.
|
|
|
Use this property to set server's name.
|
1.3.2