private void InitializePerformanceCounters() { lock (pcLock) { pc = new RtcpSenderPC(rtpSession.CName + " - " + rtpSession.RtcpEndPoint); } }
private void DisposePerformanceCounters() { lock (pcLock) { if (pc != null) { pc.Dispose(); pc = null; } } }
private void InitializePerformanceCounters() { // Check to see if user has permissions to read performance counter data if (BasePC.PerformanceCounterWrapper.HasUserPermissions()) { lock (pcLock) { pc = new RtcpSenderPC(rtpSession.CName + " - " + destinationEP); } } }
private void DisposePerformanceCounters() { lock(pcLock) { if(pc != null) { pc.Dispose(); pc = null; } } }
private void InitializePerformanceCounters() { // Check to see if user has permissions to read performance counter data if (BasePC.PerformanceCounterWrapper.HasUserPermissions()) { lock(pcLock) { pc = new RtcpSenderPC(rtpSession.CName + " - " + destinationEP); } } }
private void InitializePerformanceCounters() { lock(pcLock) { pc = new RtcpSenderPC(rtpSession.CName + " - " + rtpSession.RtcpEndPoint); } }