- Регистрация
- 20.09.2017
- Сообщения
- 114
- Благодарностей
- 84
- Баллы
- 28
Доброго времени! Подскажите как сохранить профиль и чтоб сохранились переменные проекта тоже?
В документации написано:
void Save(
string path,
bool saveProxy,
bool savePlugins,
bool saveLocalStorage,
bool saveTimezone,
bool saveGeoposition,
bool saveSuperCookie,
bool saveFonts,
bool saveWebRtc,
bool saveIndexedDb,
string[] saveVariables
)
не пойму как и в каком формате записывать сюда string[] saveVariables
У меня идет вот такой код:
// сохраняем профиль
string PathProfile = project.Directory+ @"\Profile\"+ project.Variables["Name"].Value+ ".zpprofile";
project.Profile.Save(PathProfile, true, true, true, true, true, true, false, true, true,???);
В документации написано:
void Save(
string path,
bool saveProxy,
bool savePlugins,
bool saveLocalStorage,
bool saveTimezone,
bool saveGeoposition,
bool saveSuperCookie,
bool saveFonts,
bool saveWebRtc,
bool saveIndexedDb,
string[] saveVariables
)
не пойму как и в каком формате записывать сюда string[] saveVariables
У меня идет вот такой код:
// сохраняем профиль
string PathProfile = project.Directory+ @"\Profile\"+ project.Variables["Name"].Value+ ".zpprofile";
project.Profile.Save(PathProfile, true, true, true, true, true, true, false, true, true,???);