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; } }
internal void Set(LoginCallbackInfoInternal?other) { if (other != null) { ResultCode = other.Value.ResultCode; ClientData = other.Value.ClientData; LocalUserId = other.Value.LocalUserId; ContinuanceToken = other.Value.ContinuanceToken; } }