ACR_ServerCommunicator.GameWorldManager.EnqueueAccountAssociationToPlayer C# (CSharp) Method

EnqueueAccountAssociationToPlayer() public method

Enqueue an account association event to a player for processing in the main thread. N.B. The world manager is assumed to be locked.
public EnqueueAccountAssociationToPlayer ( uint PlayerObject, string AccountAssociationSecret, string AccountAssociationURL ) : void
PlayerObject uint Supplies the local object id of the /// player to send to.
AccountAssociationSecret string Supplies the account /// association secret.
AccountAssociationURL string Supplies the base URL of the /// account association service.
return void
        public void EnqueueAccountAssociationToPlayer(uint PlayerObject, string AccountAssociationSecret, string AccountAssociationURL)
        {
            EnqueueEvent(new PlayerAccountAssociationEvent(PlayerObject, AccountAssociationSecret, AccountAssociationURL));
        }