-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ServiceDiscovery): ServiceInstanceShutdown event #58
- Loading branch information
1 parent
681b3d0
commit 8545fc3
Showing
3 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using Makaretu.Dns; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace Makaretu.Dns | ||
{ | ||
/// <summary> | ||
/// The event data for <see cref="ServiceDiscovery.ServiceInstanceShutdown"/>. | ||
/// </summary> | ||
public class ServiceInstanceShutdownEventArgs : MessageEventArgs | ||
{ | ||
/// <summary> | ||
/// The fully qualified name of the service instance. | ||
/// </summary> | ||
/// <value> | ||
/// Typically of the form "<i>instance</i>._<i>service</i>._tcp.local". | ||
/// </value> | ||
/// <seealso cref="ServiceProfile.FullyQualifiedName"/> | ||
public string ServiceInstanceName { get; set; } | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters