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.

18 lines
347 B
C#

namespace OPCDA.NET
{
using System;
using System.Xml;
[Serializable]
public class ItemDefinition
{
public string AccessPath;
public bool ActiveState;
public bool ActiveStateSpecified;
public int ClientHandle;
public string ItemName;
public XmlQualifiedName ReqType;
}
}