WaiterEntry.Close C# (CSharp) Method

Close() public method

Free resources
public Close ( ) : void
return void
            public void Close()
            {
                if (null != _waitHandle)
                {
                    _waitHandle.Close();
                    _waitHandle = null;
                }
            }

Usage Example

Esempio n. 1
0
 public void CloseThreadWaiter()
 {
     if (_waiterEntry != null)
     {
         _waiterEntry.Close();
         _waiterEntry = null;
     }
 }
All Usage Examples Of WaiterEntry::Close