| 
            
              CommandFrame(Byte, Int32, Int32) Constructor
             | 
          
        
        
        
        Namespace: GSF.PhasorProtocols.IEEEC37_118Assembly: GSF.PhasorProtocols (in GSF.PhasorProtocols.dll) Version: 2.4.257-beta
Syntaxpublic CommandFrame(
	byte[] buffer,
	int startIndex,
	int length
)
Public Sub New ( 
	buffer As Byte(),
	startIndex As Integer,
	length As Integer
)
public:
CommandFrame(
	array<unsigned char>^ buffer, 
	int startIndex, 
	int length
)
new : 
        buffer : byte[] * 
        startIndex : int * 
        length : int -> CommandFrameGSF.PhasorProtocols.IEEEC37_118.CommandFrame = function(buffer, startIndex, length);
 View SourceParameters
- buffer  Byte
 - Binary image to parse.
 - startIndex  Int32
 - Start index into buffer to begin parsing.
 - length  Int32
 - Length of valid data within buffer.
 
Exceptions| Exception | Condition | 
|---|
| ArgumentOutOfRangeException | length is not large enough to parse frame. | 
Remarks
            This constructor is used by a consumer to parse a received IEEE C37.118 command frame. Typically
            command frames are sent to a device. This constructor would used if this code was being used
            inside of a phasor measurement device.
            
See Also