There is no spoon

UE3:ISession (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site

Revision as of 16:11, 17 May 2008 by Wormbo (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search
UT3 Interface >> ISession

Contents

Package: 
WebAdmin
Known implementing classes:
Session

A session interface

Copyright 2008 Epic Games, Inc. All Rights Reserved

Author: Michiel 'elmuerte' Hendriks

[edit] Instance functions

[edit] getId

function string getId ()

Return the session identifier

[edit] getObject

function Object getObject (string key)

Get an object instance from this session.

[edit] getString

function string getString (string key, optional string defValue)

Get a string from this session.

[edit] putObject

function putObject (string key, Object value)

Add an object to the session

[edit] putString

function putString (string key, string value)

Add a string value to the session.

[edit] removeObject

function removeObject (string key)

Remove the entry with the given key

[edit] removeString

function removeString (string key)

Remove the entry with the given key

[edit] reset

function reset ()

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