상속: AnalogValueBase
예제 #1
0
파일: AnalogValue.cs 프로젝트: rmc00/gsf
        // Static Methods

        // Delegate handler to create a new BPA PDCstream analog value
        internal static IAnalogValue CreateNewValue(IDataCell parent, IAnalogDefinition definition, byte[] buffer, int startIndex, out int parsedLength)
        {
            IAnalogValue analog = new AnalogValue(parent, definition);

            parsedLength = analog.ParseBinaryImage(buffer, startIndex, 0);

            return analog;
        }