コード例 #1
0
 public MyTransport(IPEndPointSource endpointSource)
 {
 }
コード例 #2
0
ファイル: IpTransport.cs プロジェクト: dv00d00/JustEat.StatsD
 public IpTransport(IPEndPointSource endPointSource)
 {
     _endpointSource = endPointSource ?? throw new ArgumentNullException(nameof(endPointSource));
 }
コード例 #3
0
 public CachedIpEndpointSource(IPEndPointSource inner, TimeSpan cacheDuration)
 {
     _inner         = inner;
     _cachedValue   = null;
     _cacheDuration = cacheDuration;
 }