pyuaf.util.applicationtypes

This module defines the types of OPC UA applications.

The type of application is, for instance, part of the pyuaf.util.ApplicationDescription as returned by pyuaf.client.Client.serversFound().

  • Attributes:

    applicationtypes.Server = 0

    The application is a Server.

    applicationtypes.Client = 1

    The application is a Client.

    applicationtypes.ClientAndServer = 2

    The application is a Client and Server.

    applicationtypes.DiscoveryServer = 3

    The application is a Discovery Server.

  • Functions:

    pyuaf.util.applicationtypes.toString(applicationType)

    Get a string representation of the application type.

    Parameters:applicationType (int) – The application type, e.g. pyuaf.util.applicationtypes.Client.
    Returns:The name of the application type, e.g. ‘Client’.
    Return type:str