C# Class GA_GenericInfo, TheUnseen

Mostrar archivo Open project: henryj41043/TheUnseen Class Usage Examples

Public Methods

Method Description
GetGenericInfo ( string message ) : List

Gets generic system information at the beginning of a play session

GetSessionUUID ( ) : string

Gets a universally unique ID to represent the session.

GetSystem ( ) : string

Gets the users system type

GetUserUUID ( ) : string

Gets a universally unique ID to represent the user. User ID should be device specific to allow tracking across different games on the same device: -- Android uses deviceUniqueIdentifier. -- iOS/PC/Mac uses the first MAC addresses available. -- Webplayer uses deviceUniqueIdentifier. Note: The unique user ID is based on the ODIN specifications. See http://code.google.com/p/odinmobile/ for more information on ODIN.

SetCustomUserID ( string customID ) : void

Do not call this method (instead use GA_static_api.Settings.SetCustomUserID)! Only the GA class should call this method.

SetSessionUUID ( ) : void

Private Methods

Method Description
AddSystemSpecs ( string key, string type, string message ) : Hashtable

Adds detailed system specifications regarding the users/players device to the parameters.

Method Details

GetGenericInfo() public method

Gets generic system information at the beginning of a play session
public GetGenericInfo ( string message ) : List
message string
return List

GetSessionUUID() public method

Gets a universally unique ID to represent the session.
public GetSessionUUID ( ) : string
return string

GetSystem() public method

Gets the users system type
public GetSystem ( ) : string
return string

GetUserUUID() public method

Gets a universally unique ID to represent the user. User ID should be device specific to allow tracking across different games on the same device: -- Android uses deviceUniqueIdentifier. -- iOS/PC/Mac uses the first MAC addresses available. -- Webplayer uses deviceUniqueIdentifier. Note: The unique user ID is based on the ODIN specifications. See http://code.google.com/p/odinmobile/ for more information on ODIN.
public GetUserUUID ( ) : string
return string

SetCustomUserID() public method

Do not call this method (instead use GA_static_api.Settings.SetCustomUserID)! Only the GA class should call this method.
public SetCustomUserID ( string customID ) : void
customID string /// The custom user ID - this should be unique for each user ///
return void

SetSessionUUID() public method

public SetSessionUUID ( ) : void
return void