From 10d52d16a8c4af67e0aa05e9a5f8b63fdf264e53 Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Sun, 6 Feb 2022 14:21:17 -0700 Subject: [PATCH] Fix invalid cref (#7277) --- RSSDP/DeviceAvailableEventArgs.cs | 2 +- RSSDP/DeviceUnavailableEventArgs.cs | 2 +- RSSDP/ISsdpCommunicationsServer.cs | 4 ++-- RSSDP/RequestReceivedEventArgs.cs | 2 +- RSSDP/ResponseReceivedEventArgs.cs | 2 +- RSSDP/SsdpCommunicationsServer.cs | 4 ++-- RSSDP/SsdpDeviceLocator.cs | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/RSSDP/DeviceAvailableEventArgs.cs b/RSSDP/DeviceAvailableEventArgs.cs index 04b14c4dca..9d477ea9f4 100644 --- a/RSSDP/DeviceAvailableEventArgs.cs +++ b/RSSDP/DeviceAvailableEventArgs.cs @@ -4,7 +4,7 @@ using System.Net; namespace Rssdp { /// - /// Event arguments for the event. + /// Event arguments for the event. /// public sealed class DeviceAvailableEventArgs : EventArgs { diff --git a/RSSDP/DeviceUnavailableEventArgs.cs b/RSSDP/DeviceUnavailableEventArgs.cs index 94248f39f2..ca25152027 100644 --- a/RSSDP/DeviceUnavailableEventArgs.cs +++ b/RSSDP/DeviceUnavailableEventArgs.cs @@ -3,7 +3,7 @@ using System; namespace Rssdp { /// - /// Event arguments for the event. + /// Event arguments for the event. /// public sealed class DeviceUnavailableEventArgs : EventArgs { diff --git a/RSSDP/ISsdpCommunicationsServer.cs b/RSSDP/ISsdpCommunicationsServer.cs index aa35811ef1..3cbc991d60 100644 --- a/RSSDP/ISsdpCommunicationsServer.cs +++ b/RSSDP/ISsdpCommunicationsServer.cs @@ -42,10 +42,10 @@ namespace Rssdp.Infrastructure Task SendMulticastMessage(string message, int sendCount, IPAddress fromLocalIpAddress, CancellationToken cancellationToken); /// - /// Gets or sets a boolean value indicating whether or not this instance is shared amongst multiple and/or instances. + /// Gets or sets a boolean value indicating whether or not this instance is shared amongst multiple and/or instances. /// /// - /// If true, disposing an instance of a or a will not dispose this comms server instance. The calling code is responsible for managing the lifetime of the server. + /// If true, disposing an instance of a or a will not dispose this comms server instance. The calling code is responsible for managing the lifetime of the server. /// bool IsShared { get; set; } } diff --git a/RSSDP/RequestReceivedEventArgs.cs b/RSSDP/RequestReceivedEventArgs.cs index 025c4d2e0d..5cf74bd757 100644 --- a/RSSDP/RequestReceivedEventArgs.cs +++ b/RSSDP/RequestReceivedEventArgs.cs @@ -34,7 +34,7 @@ namespace Rssdp.Infrastructure } /// - /// The the request came from. + /// The the request came from. /// public IPEndPoint ReceivedFrom { diff --git a/RSSDP/ResponseReceivedEventArgs.cs b/RSSDP/ResponseReceivedEventArgs.cs index 708113da11..93262a4608 100644 --- a/RSSDP/ResponseReceivedEventArgs.cs +++ b/RSSDP/ResponseReceivedEventArgs.cs @@ -33,7 +33,7 @@ namespace Rssdp.Infrastructure } /// - /// The the response came from. + /// The the response came from. /// public IPEndPoint ReceivedFrom { diff --git a/RSSDP/SsdpCommunicationsServer.cs b/RSSDP/SsdpCommunicationsServer.cs index 58dabc628b..a66b70ac19 100644 --- a/RSSDP/SsdpCommunicationsServer.cs +++ b/RSSDP/SsdpCommunicationsServer.cs @@ -295,10 +295,10 @@ namespace Rssdp.Infrastructure } /// - /// Gets or sets a boolean value indicating whether or not this instance is shared amongst multiple and/or instances. + /// Gets or sets a boolean value indicating whether or not this instance is shared amongst multiple and/or instances. /// /// - /// If true, disposing an instance of a or a will not dispose this comms server instance. The calling code is responsible for managing the lifetime of the server. + /// If true, disposing an instance of a or a will not dispose this comms server instance. The calling code is responsible for managing the lifetime of the server. /// public bool IsShared { diff --git a/RSSDP/SsdpDeviceLocator.cs b/RSSDP/SsdpDeviceLocator.cs index 3a52b2a3e6..681ef0a5c1 100644 --- a/RSSDP/SsdpDeviceLocator.cs +++ b/RSSDP/SsdpDeviceLocator.cs @@ -42,7 +42,7 @@ namespace Rssdp.Infrastructure /// Raised for when /// /// An 'alive' notification is received that a device, regardless of whether or not that device is not already in the cache or has previously raised this event. - /// For each item found during a device (cached or not), allowing clients to respond to found devices before the entire search is complete. + /// For each item found during a device (cached or not), allowing clients to respond to found devices before the entire search is complete. /// Only if the notification type matches the property. By default the filter is null, meaning all notifications raise events (regardless of ant /// /// This event may be raised from a background thread, if interacting with UI or other objects with specific thread affinity invoking to the relevant thread is required.