1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="WaitOrTimerCallback" FullName="System.Threading.WaitOrTimerCallback">
<TypeSignature Maintainer="auto" Language="C#" Value="public delegate void WaitOrTimerCallback(object state, bool timedOut);" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed WaitOrTimerCallback extends System.MulticastDelegate" />
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<Base>
<BaseTypeName>System.Delegate</BaseTypeName>
</Base>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="state" Type="System.Object" />
<Parameter Name="timedOut" Type="System.Boolean" />
</Parameters>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Docs>
<param name="state">To be added.</param>
<param name="timedOut">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>
<see cref="T:System.Threading.WaitOrTimerCallback" /> represents a callback method that you want to execute when a registered wait handle times out or is signaled. Create the delegate by passing your callback method to the <see cref="T:System.Threading.WaitOrTimerCallback" /> constructor. Your method must have the signature shown here.</para>
<para>Create the registered wait handle by passing the <see cref="T:System.Threading.WaitOrTimerCallback" /> delegate and a <see cref="T:System.Threading.WaitHandle" /> to <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" />. Your callback method executes each time the <see cref="T:System.Threading.WaitHandle" /> times out or is signaled.</para>
<para>[Visual Basic]</para>
<block subset="none" type="note">
<para>Visual Basic users can omit the <see cref="T:System.Threading.WaitOrTimerCallback" /> constructor, and simply use the AddressOf operator when passing the callback method to <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" />. Visual Basic automatically calls the correct delegate constructor.</para>
</block>
<para>If you want to pass information to your callback method, create an object that contains the necessary information and pass it to <see cref="M:System.Threading.ThreadPool.RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean)" /> when you create the registered wait handle. Each time your callback method executes, the <paramref name="state" /> parameter contains this object.</para>
<para>For more information about using callback methods to synchronize thread pool threads, see <format type="text/html"><a href="2BE05B06-A42E-4C9D-A739-96C21D673927">[<topic://cpconthreadpooling>]</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents a method to be called when a <see cref="T:System.Threading.WaitHandle" /> is signaled or times out.</para>
</summary>
</Docs>
<Members />
</Type>
|