File: Barometer\Barometer.netstandard.tvos.macos.cs
Web Access
Project: src\src\Essentials\src\Essentials.csproj (Microsoft.Maui.Essentials)
using System;
using Microsoft.Maui.ApplicationModel;
 
namespace Microsoft.Maui.Devices.Sensors
{
	partial class BarometerImplementation : IBarometer
	{
		void PlatformStart(SensorSpeed sensorSpeed)
			=> throw ExceptionUtils.NotSupportedOrImplementedException;
 
		void PlatformStop()
			=> throw ExceptionUtils.NotSupportedOrImplementedException;
 
		public bool IsSupported
			=> throw ExceptionUtils.NotSupportedOrImplementedException;
	}
}