jabber.connection.ItemList.ItemList C# (CSharp) Method

ItemList() public method

Creates an item list, which will have at most some number of items.
public ItemList ( PubSubNode node, int maxItems ) : System
node PubSubNode The node to which this item list applies.
maxItems int Maximum size of the list. Delete notifications will be sent if this size is exceeded.
return System
        public ItemList(PubSubNode node, int maxItems)
            : base(maxItems)
        {
            m_node = node;
        }