Load() public method

load this object with signon data related to the supplied profile
public Load ( FirefoxProfile profile, string password ) : void
profile FirefoxProfile
password string
return void
		/// <summary>
		/// Quick way to load a new file
		/// </summary>
		/// <param name="profile">Profile with the signon file</param>
		public static FirefoxSignonsFile Create(FirefoxProfile profile, string password)
		{
			FirefoxSignonsFile file = new FirefoxSignonsFile();
			file.Load(profile, password);

			return file;
		}
Example #2
0
        /// <summary>
        /// Quick way to load a new file
        /// </summary>
        /// <param name="profile">Profile with the signon file</param>
        public static FirefoxSignonsFile Create(FirefoxProfile profile, string password)
        {
            FirefoxSignonsFile file = new FirefoxSignonsFile();

            file.Load(profile, password);

            return(file);
        }