/// <summary>
        /// Places the specified URL into the history. If the URL does not exist in the history, an entry is created in the history. If the URL does exist in the history, it is overwritten.
        /// </summary>
        /// <param name="pocsUrl">the string of the URL to place in the history</param>
        /// <param name="pocsTitle">the string of the title associated with that URL</param>
        /// <param name="dwFlags">the flag which indicate where a URL is placed in the history.
        /// <example><c>ADDURL_FLAG.ADDURL_ADDTOHISTORYANDCACHE</c></example>
        /// </param>
        public void AddHistoryEntry(string pocsUrl, string pocsTitle, ADDURL_FLAG dwFlags)
        {
            obj.AddUrl(pocsUrl, pocsTitle, dwFlags);

        }
 /// <summary>
 /// Places the specified URL into the history. If the URL does not exist in the history, an entry is created in the history. If the URL does exist in the history, it is overwritten.
 /// </summary>
 /// <param name="pocsUrl">the string of the URL to place in the history</param>
 /// <param name="pocsTitle">the string of the title associated with that URL</param>
 /// <param name="dwFlags">the flag which indicate where a URL is placed in the history.
 /// <example><c>ADDURL_FLAG.ADDURL_ADDTOHISTORYANDCACHE</c></example>
 /// </param>
 public void AddHistoryEntry(string pocsUrl, string pocsTitle, ADDURL_FLAG dwFlags)
 {
     obj.AddUrl(pocsUrl, pocsTitle, dwFlags);
 }