| 
            
              TsscEncoderTryAddMeasurement Method
             | 
          
        
        
            Adds the supplied measurement to the stream. If the stream is full,
            this method returns false.
            
        
        Namespace: GSF.TimeSeries.Transport.TSSCAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.258-beta
Syntaxpublic bool TryAddMeasurement(
	ushort id,
	long timestamp,
	uint quality,
	float value
)
Public Function TryAddMeasurement ( 
	id As UShort,
	timestamp As Long,
	quality As UInteger,
	value As Single
) As Boolean
public:
bool TryAddMeasurement(
	unsigned short id, 
	long long timestamp, 
	unsigned int quality, 
	float value
)
member TryAddMeasurement : 
        id : uint16 * 
        timestamp : int64 * 
        quality : uint32 * 
        value : float32 -> bool function TryAddMeasurement(id, timestamp, quality, value);
 View SourceParameters
- id  UInt16
 - the id
 - timestamp  Int64
 - the timestamp in ticks
 - quality  UInt32
 - the quality
 - value  Single
 - the value
 
Return Value
Booleantrue if successful, false otherwise.
See Also