|   | FrameParserParseWordCountFromByte Property | 
        
        
            Gets or sets flag that interprets word count in packet header from a byte instead of a word.
            
        
        Namespace: GSF.PhasorProtocols.BPAPDCstreamAssembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic bool ParseWordCountFromByte { get; set; }Public Property ParseWordCountFromByte As Boolean
	Get
	Set
public:
property bool ParseWordCountFromByte {
	bool get ();
	void set (bool value);
}member ParseWordCountFromByte : bool with get, set
function get_ParseWordCountFromByte();
function set_ParseWordCountFromByte(value);
Property Value
Boolean Remarks
Remarks
            Set to true to interpret word count in packet header from a byte instead of a word - if the sync byte
            (0xAA) is at position one, then the word count would be interpreted from byte four.  Some older BPA PDC
            stream implementations have a 0x01 in byte three where there should be a 0x00 and this throws off the
            frame length, setting this property to true will correctly interpret the word count.
            
 See Also
See Also