I love the smell of UnrealEd crashing in the morning. – tarquin

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[edit]

getId[edit]

function string getId ()

Return the session identifier

getObject[edit]

function Object getObject (string key)

Get an object instance from this session.

getString[edit]

function string getString (string key, optional string defValue)

Get a string from this session.

putObject[edit]

function putObject (string key, Object value)

Add an object to the session

putString[edit]

function putString (string key, string value)

Add a string value to the session.

removeObject[edit]

function removeObject (string key)

Remove the entry with the given key

removeString[edit]

function removeString (string key)

Remove the entry with the given key

reset[edit]

function reset ()

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