QString AccountSettingsModel::username() const {
    if (!_authInfo) {
        return NULL;
    }
    return linphone_auth_info_get_username(_authInfo);
}
Platform::String^ Linphone::Core::LinphoneAuthInfo::Username::get()
{
	API_LOCK;
	return Utils::cctops(linphone_auth_info_get_username(this->auth_info));
}
StringPtr AuthInfoAPI::getUsername() const {
	CORE_MUTEX
	
	FBLOG_DEBUG("AuthInfoAPI::getUsername", "this=" << this);
	return CHARPTR_TO_STRING(linphone_auth_info_get_username(mAuthInfo));
}