| 
            
              ConcentratorCreateNewFrame Method
             | 
          
        
        
            Creates a new IEEE C37.118 specific DataFrame for the given timestamp.
            
        
        Namespace: PhasorProtocolAdapters.IeeeC37_118Assembly: PhasorProtocolAdapters (in PhasorProtocolAdapters.dll) Version: 2.4.257-beta
Syntaxprotected override IFrame CreateNewFrame(
	Ticks timestamp
)
Protected Overrides Function CreateNewFrame ( 
	timestamp As Ticks
) As IFrame
protected:
virtual IFrame^ CreateNewFrame(
	Ticks timestamp
) override
abstract CreateNewFrame : 
        timestamp : Ticks -> IFrame 
override CreateNewFrame : 
        timestamp : Ticks -> IFrame function CreateNewFrame(timestamp);
 View SourceParameters
- timestamp  Ticks
 - Timestamp for new IFrame in Ticks.
 
Return Value
IFrameNew IEEE C37.118 
DataFrame at given 
timestamp.
Remarks
            Note that the ConcentratorBase class (which the ActionAdapterBase is derived from)
            is designed to sort IMeasurement implementations into an IFrame which represents
            a collection of measurements at a given timestamp. The CreateNewFrame method allows consumers to create
            their own IFrame implementations, in our case this will be an IEEE C37.118 data frame.
            
See Also