Yup.

"Managed thread local storage provides dynamic data slots that are unique to
a thread and application-domain combination. There are two types of data
slots, named slots and unnamed slots. Named slots can be convenient, because
you can use a mnemonic identifier. But other components can intentionally or
unintentionally modify them by using the same name for their own
thread-relative storage. If you do not expose an unnamed data slot to other
code, however, it cannot be used by any other component.
To use managed TLS, simply create your data slot using
Thread.AllocateNamedDataSlot or Thread.AllocateDataSlot, and use the
appropriate methods to set or retrieve the information placed there."



hammett




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to