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