예제 #1
0
 public List <DateTimeValuePair> GetValues(SensorChannel sensorChannel, DateTime from, DateTime to)
 {
     if (Sensor.IsEmpty(prototype))
     {
         return(new List <DateTimeValuePair>()); // DateTimeValuePairs.Empty
     }
 }
예제 #2
0
        public Serializer()
        {
            mTimestampSensorChannel = new SensorChannel(
                InkSensorType.Timestamp,
                InkSensorMetricType.Time,
                null, 0.0f, 0.0f, 0);

            InitInputConfig();
        }
예제 #3
0
        public Serializer()
        {
            mTimestampSensorChannel = new SensorChannel(
                InkSensorType.Timestamp,
                InkSensorMetricType.Time,
                null, 0.0f, 0.0f, 0);

            mEnvironment.Properties["os.version.code"] = System.Environment.OSVersion.VersionString;
            mEnvironment.Seal();

            InkDocument.InkTree.Root = new StrokeGroupNode(Identifier.FromNewGuid());
        }
예제 #4
0
 public DateTimeValuePair GetValue(SensorChannel sensorChannel, DateTime at)
 {
     return(DateTimeValuePair.Empty);
 }