My program doesn't have bugs. It just develops random features.

UE3:Session (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site

Jump to: navigation, search
UT3 Object >> Session

Contents

Package: 
WebAdmin
Implemented interfaces
ISession

A session implementation

Copyright 2008 Epic Games, Inc. All Rights Reserved

Author: Michiel 'elmuerte' Hendriks

[edit] Properties

[edit] id

Type: string

Modifiers: protected


[edit] objects

Type: array<ObjectKV>

Modifiers: protected


[edit] strings

Type: array<StringKV>

Modifiers: protected


[edit] Structs

[edit] ObjectKV

string key 
Object value 

[edit] StringKV

string key 
string value 

[edit] Instance functions

[edit] getId

function string getId ()

Specified by: ISession.getId

Return the session identifier

[edit] getObject

function Object getObject (string key)

Specified by: ISession.getObject

Get an object instance from this session.

[edit] getString

function string getString (string key, optional string defValue)

Specified by: ISession.getString

Get a string from this session.

[edit] putObject

function putObject (string key, Object value)

Specified by: ISession.putObject

Add an object to the session

[edit] putString

function putString (string key, string value)

Specified by: ISession.putString

Add a string value to the session.

[edit] removeObject

function removeObject (string key)

Specified by: ISession.removeObject

Remove the entry with the given key

[edit] removeString

function removeString (string key)

Specified by: ISession.removeString

Remove the entry with the given key

[edit] reset

function reset ()

Specified by: ISession.reset

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