You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace OPCDA
|
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
public enum OPCENUMSCOPE
|
|
|
|
|
{
|
|
|
|
|
OPC_ENUM_ALL = 6,
|
|
|
|
|
OPC_ENUM_ALL_CONNECTIONS = 3,
|
|
|
|
|
OPC_ENUM_PRIVATE = 4,
|
|
|
|
|
OPC_ENUM_PRIVATE_CONNECTIONS = 1,
|
|
|
|
|
OPC_ENUM_PUBLIC = 5,
|
|
|
|
|
OPC_ENUM_PUBLIC_CONNECTIONS = 2
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|