.Net Windows DECL Reference
 
Loading...
Searching...
No Matches
MWSDK.NetCore.MedWandReading Class Reference

Class used to return reading data from MedWand sensor. More...

Static Public Member Functions

static MedWandReading DeepClone< T > (MedWandReading obj)
 Creates a deep copy of the specified MedWandReading object.
 

Public Attributes

DateTime TimeStamp = DateTime.MinValue
 DateTime of the reading.
 
string? Status
 Current status of the MedWand device.
 
int Index
 ECG reading offest.
 
int Count
 ECG reading values count.
 
string? SensorType
 Reading sensor type.
 
string? TempAmbient
 Temperature ambient value. Will return 'Low' if less than 60.0F Will return 'High' if greater than 104.0F.
 
string? TempObject
 Temperature fahrenheit value. Will return 'Low' if less than 92.9F Will return 'High' if greater than 107.6F.
 
string? PulseRate
 SPO2 pulse rate value. Will return 'Low' if less than 25 Will return 'High' if greater than 200.
 
string? Spo2
 SPO2 value. Will return 'Low' if less than 70 Will return 'High' if greater than 100.
 
string? EcgData
 ECG sensor data.
 

Detailed Description

Class used to return reading data from MedWand sensor.

Member Function Documentation

◆ DeepClone< T >()

static MedWandReading MWSDK.NetCore.MedWandReading.DeepClone< T > ( MedWandReading obj)
static

Creates a deep copy of the specified MedWandReading object.

Template Parameters
TThe type parameter, which is not used in this method but may be required for compatibility with generic constraints.
Parameters
objThe MedWandReading object to clone.
Returns
A new instance of MedWandReading that is a deep copy of the input object.
Exceptions
ArgumentNullExceptionThrown if the obj parameter is null.

This method serializes the input object to JSON and then deserializes it to create a deep copy.