Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
This interface provides account creation and enumeration functions
Engine.OnlineAccountInterface
Delegates Summary | ||
---|---|---|
![]() | OnCreateOnlineAccountCompleted (EOnlineAccountCreateStatus ErrorStatus) |
Functions Summary | ||
---|---|---|
![]() | AddCreateOnlineAccountCompletedDelegate (delegate<OnCreateOnlineAccountCompleted> AccountCreateDelegate) | |
![]() | ClearCreateOnlineAccountCompletedDelegate (delegate<OnCreateOnlineAccountCompleted> AccountCreateDelegate) | |
![]() | bool | CreateLocalAccount (string UserName, ptional string Password) |
![]() | bool | CreateOnlineAccount (string UserName, tring Password, tring EmailAddress, ptional string ProductKey) |
![]() | bool | DeleteLocalAccount (string UserName, ptional string Password) |
![]() | bool | GetLocalAccountNames (out array<string> Accounts) |
![]() | bool | IsKeyValid () |
![]() | bool | RenameLocalAccount (string NewUserName, tring OldUserName, ptional string Password) |
![]() | bool | SaveKey (string ProductKey) |
Delegates Detail |
---|
Delegate used in notifying the UI/game that the account creation completed
@param ErrorStatus whether the account created successfully or not
Functions Detail |
---|
Sets the delegate used to notify the gameplay code that account creation completed
@param AccountCreateDelegate the delegate to use for notifications
Removes the specified delegate from the notification list
@param AccountCreateDelegate the delegate to use for notifications
Creates a non-networked account on the local system. Password is only used when supplied. Otherwise the account is not secured.
@param UserName the unique nickname of the account
@param Password the password securing the account
@return true if the account was created, false otherwise
Creates a network enabled account on the online service
@param UserName the unique nickname of the account
@param Password the password securing the account
@param EmailAddress the address used to send password hints to
@param ProductKey the unique id for this installed product
@return true if the account was created, false otherwise
Deletes a local account if the password matches
@param UserName the unique nickname of the account
@param Password the password securing the account
@return true if the account was deleted, false otherwise
Fetches a list of local accounts
@param Accounts the array that is populated with the accounts
@return true if the list was read, false otherwise
@return true if the product key is valid, false if it is invalid
Changes the name of a local account
@param UserName the unique nickname of the account
@param Password the password securing the account
@return true if the account was renamed, false otherwise
Saves the product key
@param ProductKey the product key the user entered
@return true if the key was stored successfully, false otherwise
Defaultproperties |
---|
defaultproperties { Name="Default__OnlineAccountInterface" ObjectArchetype=Interface'Core.Default__Interface' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |