I don't need to test my programs. I have an error-correcting modem.

UE3:ISession (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UT3 Interface >> ISession
Package: 
WebAdmin
Known implementing classes:
Session

A session interface

Copyright 2008 Epic Games, Inc. All Rights Reserved

Author: Michiel 'elmuerte' Hendriks

Instance functions

getId

function string getId ()

Return the session identifier

getObject

function Object getObject (string key)

Get an object instance from this session.

getString

function string getString (string key, optional string defValue)

Get a string from this session.

putObject

function putObject (string key, Object value)

Add an object to the session

putString

function putString (string key, string value)

Add a string value to the session.

removeObject

function removeObject (string key)

Remove the entry with the given key

removeString

function removeString (string key)

Remove the entry with the given key

reset

function reset ()

Reset the session's data. The ID will stay the same.