Files
csstatsdresearchold/StatsdClient/ConnectionType.cs
2013-06-29 02:16:09 +02:00

23 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace StatsdClient
{
/// <summary>
/// The network connection type
/// </summary>
public enum ConnectionType
{
/// <summary>
/// Udp (recommended)
/// </summary>
Udp,
/// <summary>
/// Tcp
/// </summary>
Tcp
}
}