WaiterEntry.Close C# (CSharp) 메소드

Close() 공개 메소드

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

Usage Example

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