コード例 #1
0
ファイル: SocketsTelemetry.cs プロジェクト: mikem8361/runtime
 public void AcceptStart(Internals.SocketAddress address)
 {
     if (IsEnabled(EventLevel.Informational, EventKeywords.All))
     {
         AcceptStart(address.ToString());
     }
 }
コード例 #2
0
ファイル: SocketsTelemetry.cs プロジェクト: mikem8361/runtime
        public void ConnectStart(Internals.SocketAddress address)
        {
            Interlocked.Increment(ref _currentOutgoingConnectAttempts);

            if (IsEnabled(EventLevel.Informational, EventKeywords.All))
            {
                ConnectStart(address.ToString());
            }
        }
コード例 #3
0
 public void ConnectStart(Internals.SocketAddress address)
 {
     ConnectStart(address.ToString());
 }
コード例 #4
0
 public void AcceptStart(Internals.SocketAddress address)
 {
     AcceptStart(address.ToString());
 }