humanemulator.net — справка. Продукт, демо и покупка — на хуманэмулятор.рф | Демо | Купить | API | Changelog

set_limit

set_limit($limit=5000); -

:

  • $limit

    :
  • true
  • false

    <?php
    // Scenario: Set limit on the number of messages to read for requests
    
    $xhe_host = getenv("RPABOT_HOST_URL");
    if (!isset($path)){
        // Path to the init.php file for connecting to the XHE API
        $path = "../../../Templates/init.php";
        // Including init.php grants access to all classes and functionality for working with the XHE API
        require($path);
    }
    
    // Step 1. Open Outlook app
    echo "\nStep 1. Open Outlook app: ";
    $openResult = WEB::$outlook->open(false);
    if ($openResult)
        echo "\n Open Outlook app is success";
    else
        echo "\n Open Outlook app is fail";
    
    // Example 1. Set limit to 1000 messages
    $limit = 1000;
    echo "\n\nExample 1. Set limit to $limit messages: ";
    $setLimitResult = WEB::$outlook->set_limit($limit);
    if ($setLimitResult)
        echo "\n Set limit success";
    else
        echo "\n Set limit fail";
    
    // Example 2. Get message count to verify limit
    $folder = "\\\\test@mail.ru\\Inbox";
    echo "\n\nExample 2. Get message count from Inbox: ";
    $count = WEB::$outlook->get_message_count($folder);
    echo "Count: $count";
    
    // Example 3. Reset limit to default (5000)
    $defaultLimit = 5000;
    echo "\n\nExample 3. Reset limit to default ($defaultLimit): ";
    $setLimitResult = WEB::$outlook->set_limit($defaultLimit);
    if ($setLimitResult)
        echo "\n Set limit success";
    else
        echo "\n Set limit fail";
    
    echo "\n";
    
    // Quit
    WINDOW::$app->quit();
    ?>
    #region using
    
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
    
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
    
    #endregion
    
     class Program:XHEScript
     {
    	  static void Main(string[] args)
    	  {
    			// init XHE
    			server = Environment.GetEnvironmentVariable("RPABOT_HOST_URL");
    			InitXHE();
    
                // 
                echo("<hr><font color=blue>outlook->set_limit</font><hr>");
    
    			// 1
    			echo("1. Set limit to 1000 messages: ");
    			bool setLimitResult = outlook.set_limit(1000);
    			if (setLimitResult)
    				echo("\n Set limit success");
    			else
    				echo("\n Set limit fail");
    
    			// 2
    			echo("\n2. Get message count from Inbox: ");
    			int count = outlook.get_message_count("\\\\test@mail.ru\\Inbox");
    			echo("Count: " + count);
    
    			// 3
    			echo("\n3. Reset limit to default (5000): ");
    			setLimitResult = outlook.set_limit(5000);
    			if (setLimitResult)
    				echo("\n Set limit success");
    			else
    				echo("\n Set limit fail");
    
                // 
                echo("\n");
    
                // Quit
                app.quit();
          }
    }

    =============================================
    outlook        DOM  System  Vision  Web  Window        
    =============================================
    - ,
    .