private void InitializePerformanceCounters() { lock (pcLock) { pc = new RtpSenderPC(sdes.CName + " - " + payloadType.ToString()); } }
private void DisposePerformanceCounters() { lock (pcLock) { if (pc != null) { pc.Dispose(); pc = null; } } }
private void DisposePerformanceCounters() { lock(pcLock) { if(pc != null) { pc.Dispose(); pc = null; } } }
private void InitializePerformanceCounters() { lock(pcLock) { pc = new RtpSenderPC(sdes.CName + " - " + payloadType.ToString()); } }