|
| [VB.NET] | |
| Function CreateSession
(LogonName As String, Password As String)
As
String |
|
| LogonName |
| Logon Name |
| Password |
| Password |
|
| Created session object ID |
| VB.NET
Example |
Switch to language:
[C#] |
|
| | 'Create personalizer object |
| | Dim pers As New PersonalizerRef.Personalizer()
|
| | Try |
| | 'Logon to the server and create session object |
| | Dim SessionID As
String = pers.CreateSession("LogonName", "Password") |
| | Dim sess As New SessionRef.Session()
|
| | ... |