Andrew Cullen

Results 3 issues of Andrew Cullen

In v3.0, we ask that you mark the assembly containing your custom structures with TypeLibrary attribute. ``` using System; using Workstation.ServiceModel.Ua; [assembly: TypeLibrary()] namespace CustomTypeLibrary { [DataTypeId("nsu=http://www.unifiedautomation.com/DemoServer/;i=3002")] [BinaryEncodingId("nsu=http://www.unifiedautomation.com/DemoServer/;i=5054")] public class...

enhancement

Consider adding support for simple structures that may be encoded by reflection. In a PLC you may create a UDT, for example: ``` TYPE "Vector" VERSION : 0.1 STRUCT X...

enhancement

What would it take to add the AlarmCondition fields to the Event type (or Custom EventType). Could I add the properties to this call: #Not working alarmType = server.create_custom_event_type(idx, 'MyFirstAlarm',...