Amib.Threading.Internal.EventWaitHandleFactory.CreateAutoResetEvent C# (CSharp) 메소드

CreateAutoResetEvent() 공개 정적인 메소드

Create a new AutoResetEvent object
public static CreateAutoResetEvent ( ) : AutoResetEvent
리턴 System.Threading.AutoResetEvent
        public static AutoResetEvent CreateAutoResetEvent()
        {
            AutoResetEvent waitHandle = new AutoResetEvent(false);

            #if (WindowsCE)
            ReplaceEventHandle(waitHandle, false, false);
            #endif

            return waitHandle;
        }