public PageInfo( PageEntry entry )
        {
            m_PageType = entry.Type;

            m_TimeSent = entry.Sent;
            m_SentBy = GetAccount( entry.Sender );

            m_Message = entry.Message;
            m_Responses = new ResponseInfoCollection();
        }
Esempio n. 2
0
        public PageInfo(PageEntry entry)
        {
            m_PageType = entry.Type;

            m_TimeSent = entry.Sent;
            m_SentBy   = GetAccount(entry.Sender);

            m_Message   = entry.Message;
            m_Responses = new ResponseInfoCollection();
        }
Esempio n. 3
0
 /// <summary>
 /// Default constructor for enumerator.
 /// </summary>
 /// <param name="collection">Instance of the collection to enumerate.</param>
 internal ResponseInfoCollectionEnumerator(ResponseInfoCollection collection)
 {
     _index = -1;
     _collection = collection;
 }
Esempio n. 4
0
		public PageInfo()
		{
			m_Responses = new ResponseInfoCollection();
		}
Esempio n. 5
0
 public PageInfo()
 {
     m_Responses = new ResponseInfoCollection();
 }
Esempio n. 6
0
 /// <summary>
 /// Default constructor for enumerator.
 /// </summary>
 /// <param name="collection">Instance of the collection to enumerate.</param>
 internal ResponseInfoCollectionEnumerator(ResponseInfoCollection collection)
 {
     _index      = -1;
     _collection = collection;
 }