PHP Classes

File: src/Types/BrowseDirection.php

Recommend this page to a friend!
  Packages of Gianfrancesco Aurecchia   OPC UA Client   src/Types/BrowseDirection.php   Download  
File: src/Types/BrowseDirection.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: OPC UA Client
Control devices that support the OPC UA protocol
Author: By
Last change:
Date: 5 days ago
Size: 218 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
PhpOpcua\Client\Types;

/**
 * Browse direction for address space navigation.
 */
enum BrowseDirection: int
{
    case
Forward = 0;
    case
Inverse = 1;
    case
Both = 2;
}