public void Set(CreateUserOptions other)
 {
     if (other != null)
     {
         m_ApiVersion     = ConnectInterface.CreateuserApiLatest;
         ContinuanceToken = other.ContinuanceToken;
     }
 }
 public void Set(LinkAccountOptions other)
 {
     if (other != null)
     {
         m_ApiVersion     = ConnectInterface.LinkaccountApiLatest;
         LocalUserId      = other.LocalUserId;
         ContinuanceToken = other.ContinuanceToken;
     }
 }
Ejemplo n.º 3
0
 internal void Set(LoginCallbackInfoInternal?other)
 {
     if (other != null)
     {
         ResultCode       = other.Value.ResultCode;
         ClientData       = other.Value.ClientData;
         LocalUserId      = other.Value.LocalUserId;
         ContinuanceToken = other.Value.ContinuanceToken;
     }
 }