Exemplo n.º 1
0
        /// <summary>
        /// Note: This can be used to copy the parameters from one URL to another.
        /// </summary>
        /// <param name="oldURL"></param>
        public void CopyParameters(MCSUrl oldURL)
        {
            Hashtable htOld = oldURL._ht;

            foreach (object key in htOld.Keys)
            {
                _ht.Add(key, htOld[key]);
            }
        }
 public static void SetUrl(long id, MCSUrl url)
 {
     SetUrl(id, url.ToString());
 }