Files
tgstation-server/TGServiceInterface/Connectivity.cs
T
2017-09-14 14:41:00 -04:00

18 lines
469 B
C#

using System.ServiceModel;
namespace TGServiceInterface
{
/// <summary>
/// Used for testing connections to the service without authentication
/// </summary>
[ServiceContract]
public interface ITGConnectivity
{
/// <summary>
/// Does nothing on the server end, but if the call completes, you can be sure you are connected. WCF won't throw until you try until you actually use the API
/// </summary>
[OperationContract]
void VerifyConnection();
}
}