Esempio n. 1
0
 /// <summary>
 /// CREATE A UNNAMED AND VOLATILE FORWARD 
 /// </summary>
 /// <param name="path"></param>
 /// <param name="redirect"></param>
 public static Forward CreateForward( string path, bool redirect )
 {
     Forward result = new Forward();
     result.path = path;
     result.redirect = redirect;
     return result;
 }
Esempio n. 2
0
        internal Forwards( XmlNodeList forwardList )
        {
            forwardTable = new Hashtable();

            Forward item;

            foreach( XmlNode n in forwardList )
            {
                item = new Forward( n ) ;

                forwardTable.Add( item.Name, item );

            }
        }