diff --git a/RGB.NET.Brushes/Brushes/ConicalGradientBrush.cs b/RGB.NET.Brushes/Brushes/ConicalGradientBrush.cs index c106507..9a87bd8 100644 --- a/RGB.NET.Brushes/Brushes/ConicalGradientBrush.cs +++ b/RGB.NET.Brushes/Brushes/ConicalGradientBrush.cs @@ -10,7 +10,8 @@ using RGB.NET.Core; namespace RGB.NET.Brushes { - /// + /// + /// /// /// Represents a brush drawing a conical gradient. /// diff --git a/RGB.NET.Brushes/Brushes/LinearGradientBrush.cs b/RGB.NET.Brushes/Brushes/LinearGradientBrush.cs index 2937697..ad93254 100644 --- a/RGB.NET.Brushes/Brushes/LinearGradientBrush.cs +++ b/RGB.NET.Brushes/Brushes/LinearGradientBrush.cs @@ -11,7 +11,8 @@ using RGB.NET.Core; namespace RGB.NET.Brushes { - /// + /// + /// /// /// Represents a brush drawing a linear gradient. /// diff --git a/RGB.NET.Brushes/Brushes/RadialGradientBrush.cs b/RGB.NET.Brushes/Brushes/RadialGradientBrush.cs index 83ca74e..ee152c4 100644 --- a/RGB.NET.Brushes/Brushes/RadialGradientBrush.cs +++ b/RGB.NET.Brushes/Brushes/RadialGradientBrush.cs @@ -9,7 +9,8 @@ using RGB.NET.Core; namespace RGB.NET.Brushes { - /// + /// + /// /// /// Represents a brush drawing a radial gradient around a center point. /// diff --git a/RGB.NET.Brushes/Gradients/AbstractGradient.cs b/RGB.NET.Brushes/Gradients/AbstractGradient.cs index 0437993..507bd63 100644 --- a/RGB.NET.Brushes/Gradients/AbstractGradient.cs +++ b/RGB.NET.Brushes/Gradients/AbstractGradient.cs @@ -8,7 +8,8 @@ using RGB.NET.Core; namespace RGB.NET.Brushes.Gradients { - /// + /// + /// /// /// Represents a basic gradient. /// diff --git a/RGB.NET.Brushes/Gradients/RainbowGradient.cs b/RGB.NET.Brushes/Gradients/RainbowGradient.cs index 1064318..0df739b 100644 --- a/RGB.NET.Brushes/Gradients/RainbowGradient.cs +++ b/RGB.NET.Brushes/Gradients/RainbowGradient.cs @@ -5,7 +5,8 @@ using RGB.NET.Core; namespace RGB.NET.Brushes.Gradients { - /// + /// + /// /// /// Represents a rainbow gradient which circles through all colors of the HUE-color-space.
/// See as reference. diff --git a/RGB.NET.Core/Brushes/AbstractBrush.cs b/RGB.NET.Core/Brushes/AbstractBrush.cs index d490e0c..0193913 100644 --- a/RGB.NET.Core/Brushes/AbstractBrush.cs +++ b/RGB.NET.Core/Brushes/AbstractBrush.cs @@ -7,7 +7,8 @@ using System.Linq; namespace RGB.NET.Core { - /// + /// + /// /// /// Represents a basic brush. /// diff --git a/RGB.NET.Core/Decorators/AbstractDecorator.cs b/RGB.NET.Core/Decorators/AbstractDecorator.cs index f1dc67e..381f4f5 100644 --- a/RGB.NET.Core/Decorators/AbstractDecorator.cs +++ b/RGB.NET.Core/Decorators/AbstractDecorator.cs @@ -2,7 +2,8 @@ namespace RGB.NET.Core { - /// + /// + /// public abstract class AbstractDecorator : AbstractBindable, IDecorator { #region Properties & Fields diff --git a/RGB.NET.Core/Decorators/AbstractIDecorateable.cs b/RGB.NET.Core/Decorators/AbstractIDecorateable.cs index 9772b97..a9c5560 100644 --- a/RGB.NET.Core/Decorators/AbstractIDecorateable.cs +++ b/RGB.NET.Core/Decorators/AbstractIDecorateable.cs @@ -4,7 +4,8 @@ using System.Linq; namespace RGB.NET.Core { - /// + /// + /// public abstract class AbstractDecoratable : AbstractBindable, IDecoratable where T : IDecorator { diff --git a/RGB.NET.Core/Devices/AbstractRGBDevice.cs b/RGB.NET.Core/Devices/AbstractRGBDevice.cs index 7415ba2..83acda9 100644 --- a/RGB.NET.Core/Devices/AbstractRGBDevice.cs +++ b/RGB.NET.Core/Devices/AbstractRGBDevice.cs @@ -8,7 +8,8 @@ using System.Linq; namespace RGB.NET.Core { - /// + /// + /// /// /// Represents a generic RGB-device /// diff --git a/RGB.NET.Core/Devices/IRGBDevice.cs b/RGB.NET.Core/Devices/IRGBDevice.cs index 30777f6..1c971b6 100644 --- a/RGB.NET.Core/Devices/IRGBDevice.cs +++ b/RGB.NET.Core/Devices/IRGBDevice.cs @@ -3,7 +3,9 @@ using System.Collections.Generic; namespace RGB.NET.Core { - /// + /// + /// + /// /// /// Represents a generic RGB-device. /// diff --git a/RGB.NET.Core/Groups/AbstractLedGroup.cs b/RGB.NET.Core/Groups/AbstractLedGroup.cs index bb3b561..7007152 100644 --- a/RGB.NET.Core/Groups/AbstractLedGroup.cs +++ b/RGB.NET.Core/Groups/AbstractLedGroup.cs @@ -2,7 +2,8 @@ namespace RGB.NET.Core { - /// + /// + /// /// /// Represents a generic . /// diff --git a/RGB.NET.Core/RGBSurface.cs b/RGB.NET.Core/RGBSurface.cs index e91dcfa..14b1e26 100644 --- a/RGB.NET.Core/RGBSurface.cs +++ b/RGB.NET.Core/RGBSurface.cs @@ -8,7 +8,8 @@ using System.Linq; namespace RGB.NET.Core { - /// + /// + /// /// /// Represents a RGB-surface containing multiple devices. /// diff --git a/RGB.NET.Decorators/Brush/FlashDecorator.cs b/RGB.NET.Decorators/Brush/FlashDecorator.cs index 526b30a..c4d79ba 100644 --- a/RGB.NET.Decorators/Brush/FlashDecorator.cs +++ b/RGB.NET.Decorators/Brush/FlashDecorator.cs @@ -7,7 +7,8 @@ using RGB.NET.Core; namespace RGB.NET.Decorators.Brush { - /// + /// + /// /// /// Represents a decorator which allows to flash a brush by modifying his opacity. /// @@ -131,7 +132,8 @@ namespace RGB.NET.Decorators.Brush // ReSharper restore InvertIf } - /// + /// + /// public override void OnAttached(IDecoratable decoratable) { base.OnAttached(decoratable); diff --git a/RGB.NET.Decorators/Gradient/MoveGradientDecorator.cs b/RGB.NET.Decorators/Gradient/MoveGradientDecorator.cs index 28df485..9e7f86a 100644 --- a/RGB.NET.Decorators/Gradient/MoveGradientDecorator.cs +++ b/RGB.NET.Decorators/Gradient/MoveGradientDecorator.cs @@ -4,7 +4,8 @@ using RGB.NET.Core; namespace RGB.NET.Decorators.Gradient { - /// + /// + /// /// /// Represents a decorator which allows to move an by modifying his offset. /// diff --git a/RGB.NET.Devices.Asus/Generic/AsusRGBDevice.cs b/RGB.NET.Devices.Asus/Generic/AsusRGBDevice.cs index fcc1138..46303a9 100644 --- a/RGB.NET.Devices.Asus/Generic/AsusRGBDevice.cs +++ b/RGB.NET.Devices.Asus/Generic/AsusRGBDevice.cs @@ -8,7 +8,8 @@ using RGB.NET.Core.Layout; namespace RGB.NET.Devices.Asus { - /// + /// + /// /// /// Represents a generic Asus-device. (keyboard, mouse, headset, mousepad). /// @@ -130,7 +131,8 @@ namespace RGB.NET.Devices.Asus ///
protected abstract void ApplyColorData(); - /// + /// + /// public override void Dispose() { if ((DeviceInfo is AsusRGBDeviceInfo deviceInfo) && (deviceInfo.Handle != IntPtr.Zero)) diff --git a/RGB.NET.Devices.Asus/Generic/AsusRGBDeviceInfo.cs b/RGB.NET.Devices.Asus/Generic/AsusRGBDeviceInfo.cs index da8ec75..95faa34 100644 --- a/RGB.NET.Devices.Asus/Generic/AsusRGBDeviceInfo.cs +++ b/RGB.NET.Devices.Asus/Generic/AsusRGBDeviceInfo.cs @@ -27,7 +27,7 @@ namespace RGB.NET.Devices.Asus public RGBDeviceLighting Lighting => RGBDeviceLighting.Key; /// - /// Gets the index of the . + /// Gets the index of the . /// internal IntPtr Handle { get; } diff --git a/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDevice.cs b/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDevice.cs index 8a5415a..1928340 100644 --- a/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDevice.cs +++ b/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDevice.cs @@ -8,7 +8,8 @@ using RGB.NET.Devices.CoolerMaster.Native; namespace RGB.NET.Devices.CoolerMaster { - /// + /// + /// /// /// Represents a generic CoolerMaster-device. (keyboard, mouse, headset, mousepad). /// @@ -118,7 +119,8 @@ namespace RGB.NET.Devices.CoolerMaster } } - /// + /// + /// public override void Dispose() { _CoolerMasterSDK.SetControlDevice(DeviceInfo.DeviceIndex); diff --git a/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDeviceInfo.cs b/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDeviceInfo.cs index 38bf277..c08ad0b 100644 --- a/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDeviceInfo.cs +++ b/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterRGBDeviceInfo.cs @@ -28,7 +28,7 @@ namespace RGB.NET.Devices.CoolerMaster public RGBDeviceLighting Lighting => RGBDeviceLighting.Key; /// - /// Gets the of the . + /// Gets the of the . /// public CoolerMasterDevicesIndexes DeviceIndex { get; } diff --git a/RGB.NET.Devices.Corsair/Generic/CorsairRGBDevice.cs b/RGB.NET.Devices.Corsair/Generic/CorsairRGBDevice.cs index 3f35dac..1a6bc33 100644 --- a/RGB.NET.Devices.Corsair/Generic/CorsairRGBDevice.cs +++ b/RGB.NET.Devices.Corsair/Generic/CorsairRGBDevice.cs @@ -9,7 +9,8 @@ using RGB.NET.Devices.Corsair.Native; namespace RGB.NET.Devices.Corsair { - /// + /// + /// /// /// Represents a generic CUE-device. (keyboard, mouse, headset, mousepad). /// diff --git a/RGB.NET.Devices.Corsair/Generic/CorsairRGBDeviceInfo.cs b/RGB.NET.Devices.Corsair/Generic/CorsairRGBDeviceInfo.cs index e9aa475..b6cccbf 100644 --- a/RGB.NET.Devices.Corsair/Generic/CorsairRGBDeviceInfo.cs +++ b/RGB.NET.Devices.Corsair/Generic/CorsairRGBDeviceInfo.cs @@ -19,7 +19,7 @@ namespace RGB.NET.Devices.Corsair public CorsairDeviceType CorsairDeviceType { get; } /// - /// Gets the index of the . + /// Gets the index of the . /// public int CorsairDeviceIndex { get; } @@ -50,7 +50,7 @@ namespace RGB.NET.Devices.Corsair /// /// Internal constructor of managed . /// - /// The index of the . + /// The index of the . /// The type of the . /// The native -struct internal CorsairRGBDeviceInfo(int deviceIndex, RGBDeviceType deviceType, _CorsairDeviceInfo nativeInfo) diff --git a/RGB.NET.Devices.Logitech/Generic/LogitechRGBDevice.cs b/RGB.NET.Devices.Logitech/Generic/LogitechRGBDevice.cs index a93b0b3..9922c3f 100644 --- a/RGB.NET.Devices.Logitech/Generic/LogitechRGBDevice.cs +++ b/RGB.NET.Devices.Logitech/Generic/LogitechRGBDevice.cs @@ -6,7 +6,8 @@ using RGB.NET.Core.Layout; namespace RGB.NET.Devices.Logitech { - /// + /// + /// /// /// Represents a generic Logitech-device. (keyboard, mouse, headset, mousepad). /// diff --git a/RGB.NET.Devices.Msi/Generic/MsiRGBDevice.cs b/RGB.NET.Devices.Msi/Generic/MsiRGBDevice.cs index 4ec4ad2..0e1cdeb 100644 --- a/RGB.NET.Devices.Msi/Generic/MsiRGBDevice.cs +++ b/RGB.NET.Devices.Msi/Generic/MsiRGBDevice.cs @@ -8,7 +8,8 @@ using RGB.NET.Devices.Msi.Native; namespace RGB.NET.Devices.Msi { - /// + /// + /// /// /// Represents a generic Msi-device. (keyboard, mouse, headset, mousepad). /// diff --git a/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs b/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs index 11f3ef9..5a2aeea 100644 --- a/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs +++ b/RGB.NET.Devices.Novation/Generic/NovationRGBDevice.cs @@ -8,7 +8,8 @@ using Sanford.Multimedia.Midi; namespace RGB.NET.Devices.Novation { - /// + /// + /// /// /// Represents a generic Novation-device. (launchpad). /// @@ -190,7 +191,8 @@ namespace RGB.NET.Devices.Novation _outputDevice.SendShort(shortMessage.Message); } - /// + /// + /// public override void Dispose() { Reset();