Exemplo n.º 1
0
 private void DisposePerformanceCounters()
 {
     lock(pcLock)
     {
         if(pc != null)
         {
             pc.Dispose();
             pc = null;
         }
     }
 }
Exemplo n.º 2
0
 private void InitializePerformanceCounters()
 {
     lock(pcLock)
     {
         if(participant != null)
         {
             pc = new RtpSessionPC(participant.CName + " - " + multicastEP.ToString());
         }
     }
 }