source: trunk/Include/Classes/System/Threading/AutoResetEvent.ab@ 419

Last change on this file since 419 was 419, checked in by NoWest, 16 years ago

この際なのでWaitHandle系を全部実装

File size: 435 bytes
Line 
1' Classes/System/Threading/AutoResetEvent.ab
2
3#ifndef __SYSTEM_THREADING_AUTORESETEVENT_AB__
4#define __SYSTEM_THREADING_AUTORESETEVENT_AB__
5
6NameSpace System
7NameSpace Threading
8
9Class AutoResetEvent
10 Inherits System.Threading.EventWaitHandle
11
12Public
13 Sub AutoResetEvent(initialState As Boolean)
14 This.EventWaitHandle(initialState,EventResetMode.AutoReset)
15 End Sub
16
17End Class
18
19End Namespace
20End Namespace
21
22#endif
Note: See TracBrowser for help on using the repository browser.