GetMeetings() public method

public GetMeetings ( string SessionId, sugarsoapPortTypeClient SugarSoap, string Query, string OrderBy, int Offset, int MaxResults, bool GetDeleted ) : DataTable
SessionId string
SugarSoap sugarsoapPortTypeClient
Query string
OrderBy string
Offset int
MaxResults int
GetDeleted bool
return System.Data.DataTable
        public void GetMeetingsUnitTest()
        {
            //Create a new instance of the helper class
            SugarHelper helper = new SugarHelper();

            //Authenticate
            if (helper.Authenticate(m_username, m_password))
            {
                //Get the meetings
                DataTable meetings = helper.GetMeetings("", null, "", "", 0, 100, false);
                Console.WriteLine("Meetings count=" + meetings.Rows.Count + ".");
            }
        }