diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-02-06 14:21:17 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-06 22:21:17 +0100 |
| commit | 10d52d16a8c4af67e0aa05e9a5f8b63fdf264e53 (patch) | |
| tree | d68d1c57253ffe36d2b88ea391d7f50dc94242ca /RSSDP/ISsdpCommunicationsServer.cs | |
| parent | f3c3402984ccef548cf29e406f4854d704a24a5f (diff) | |
Fix invalid cref (#7277)
Diffstat (limited to 'RSSDP/ISsdpCommunicationsServer.cs')
| -rw-r--r-- | RSSDP/ISsdpCommunicationsServer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RSSDP/ISsdpCommunicationsServer.cs b/RSSDP/ISsdpCommunicationsServer.cs index aa35811ef..3cbc991d6 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); /// <summary> - /// Gets or sets a boolean value indicating whether or not this instance is shared amongst multiple <see cref="SsdpDeviceLocatorBase"/> and/or <see cref="ISsdpDevicePublisher"/> instances. + /// Gets or sets a boolean value indicating whether or not this instance is shared amongst multiple <see cref="SsdpDeviceLocator"/> and/or <see cref="ISsdpDevicePublisher"/> instances. /// </summary> /// <remarks> - /// <para>If true, disposing an instance of a <see cref="SsdpDeviceLocatorBase"/>or a <see cref="ISsdpDevicePublisher"/> will not dispose this comms server instance. The calling code is responsible for managing the lifetime of the server.</para> + /// <para>If true, disposing an instance of a <see cref="SsdpDeviceLocator"/>or a <see cref="ISsdpDevicePublisher"/> will not dispose this comms server instance. The calling code is responsible for managing the lifetime of the server.</para> /// </remarks> bool IsShared { get; set; } } |
