WaitHandle.Handle Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Attenzione
Use the SafeWaitHandle property instead.
Attenzione
WaitHandle.Handle has been deprecated. Use the SafeWaitHandle property instead.
Ottiene o imposta l'handle nativo del sistema operativo.
public:
virtual property IntPtr Handle { IntPtr get(); void set(IntPtr value); };
[System.Obsolete("Use the SafeWaitHandle property instead.")]
public virtual IntPtr Handle { get; set; }
[System.Obsolete("WaitHandle.Handle has been deprecated. Use the SafeWaitHandle property instead.")]
public virtual IntPtr Handle { get; set; }
[System.Obsolete("Use the SafeWaitHandle property instead.")]
public virtual IntPtr Handle { get; [System.Security.SecurityCritical] set; }
public virtual IntPtr Handle { get; set; }
[<System.Obsolete("Use the SafeWaitHandle property instead.")>]
member this.Handle : nativeint with get, set
[<System.Obsolete("WaitHandle.Handle has been deprecated. Use the SafeWaitHandle property instead.")>]
member this.Handle : nativeint with get, set
[<System.Obsolete("Use the SafeWaitHandle property instead.")>]
[<set: System.Security.SecurityCritical>]
member this.Handle : nativeint with get, set
member this.Handle : nativeint with get, set
Public Overridable Property Handle As IntPtr
Valore della proprietà
nativeint
IntPtr che rappresenta l'handle nativo del sistema operativo. Il valore predefinito è quello del campo InvalidHandle.
- Attributi
Commenti
L'assegnazione di un nuovo valore alla proprietà non chiude l'handle Handle precedente. Ciò può comportare una gestione perdita.
Non usare questa proprietà in .NET Framework versione 2.0 o successiva; utilizzare invece la SafeWaitHandle proprietà . L'impostazione di questa proprietà su un handle valido imposta anche la SafeWaitHandle proprietà, ma impostandola su InvalidHandle può comportare un handle in perdita.