Exemplo n.º 1
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();
        }
 /// <summary>
 /// Default constructor for enumerator.
 /// </summary>
 /// <param name="collection">Instance of the collection to enumerate.</param>
 internal ResponseInfoCollectionEnumerator(ResponseInfoCollection collection)
 {
     _index      = -1;
     _collection = collection;
 }
Exemplo n.º 3
0
 public PageInfo()
 {
     m_Responses = new ResponseInfoCollection();
 }