Session


Release

Release Session object on server

Call Method
[VB.NET]
   Sub Release (SessionID As String)
Parameters
   SessionID
         Session ID
VB.NET Example Switch to language: [C#]
  'Create personalizer object and Session object
  Dim pers As New PersonalizerRef.Personalizer()
  Dim sess As New SessionRef.Session()
  Dim SessionID As String = ""
  Try
      SessionID = pers.CreateSession("LogonName", "Password")
      ' Create ICQ notification proxy object
      Dim objICQ As New ICQRef.ICQ() 'for ICQ
      'Create server notification object
      Dim ICQNotifID As String = sess.CreateICQNotification(SessionID)
      ...
      sess.Release(SessionID)