source:
trunk/Include/Classes/System/Threading/AutoResetEvent.ab@
504
Last change on this file since 504 was 494, checked in by , 17 years ago | |
---|---|
File size: 329 bytes |
Line | |
---|---|
1 | ' Classes/System/Threading/AutoResetEvent.ab |
2 | |
3 | NameSpace System |
4 | NameSpace Threading |
5 | |
6 | Class AutoResetEvent |
7 | Inherits System.Threading.EventWaitHandle |
8 | |
9 | Public |
10 | Sub AutoResetEvent(initialState As Boolean) |
11 | This.EventWaitHandle(initialState,EventResetMode.AutoReset) |
12 | End Sub |
13 | |
14 | End Class |
15 | |
16 | End Namespace |
17 | End Namespace |
Note:
See TracBrowser
for help on using the repository browser.