コード例 #1
0
ファイル: ServiceThrottle.cs プロジェクト: dox0/DotNet471RS3
        void GotCall(object state)
        {
            ChannelHandler channel = (ChannelHandler)state;

            lock (this.ThisLock)
            {
                channel.ThrottleAcquiredForCall();
            }
        }
コード例 #2
0
        private void GotCall(object state)
        {
            ChannelHandler handler = (ChannelHandler)state;

            lock (this.ThisLock)
            {
                handler.ThrottleAcquiredForCall();
            }
        }