ITrkAttributeAgent.SessionID (write-only property)

property SessionID
Syntax: object.SessionID = String
Description:
The SessionID property specifies the level of access a given user has. The query and
create attributes methods are protected.


Example:
Dim oTrkAttribute As Object
Dim oTrkAttributes As Object
Dim oTrkAttribAgent As Object
Set oTrkAttribAgent = CreateObject("Tracker.TrkAttributeAgent")
oTrkAttribAgent.SessionId = "SESS2"
oTrkAttribAgent.Execute oTrkAttributes
Set oTrkAttribute = oTrkAttributes.Item(1)
...