Udostępnij za pośrednictwem


HostProtectionAttribute.ExternalThreading Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy uwidocznianie wątków zewnętrznych.

public:
 property bool ExternalThreading { bool get(); void set(bool value); };
public bool ExternalThreading { get; set; }
member this.ExternalThreading : bool with get, set
Public Property ExternalThreading As Boolean

Wartość właściwości

true w przypadku uwidocznienia wątków zewnętrznych; w przeciwnym razie , false. Wartość domyślna to false.

Przykłady

Poniższy przykład kodu ilustruje użycie atrybutu HostProtectionAttribute z właściwością ExternalThreading . Ten przykład jest częścią większego przykładu udostępnionego HostProtectionAttribute dla klasy .

// Use the enumeration flags to indicate that this method exposes synchronization 
//  and external threading.

[HostProtection(Synchronization=true,ExternalThreading=true)]
static void StartThread()
{
   Thread^ t = gcnew Thread( gcnew ThreadStart( WatchFileEvents ) );
   
   // Start the new thread.  On a uniprocessor, the thread is not given 
   // any processor time until the main thread yields the processor.  
   t->Start();
   
   // Give the new thread a chance to execute.
   Thread::Sleep( 1000 );
}
// Use the enumeration flags to indicate that this method exposes 
// synchronization and external threading.
[HostProtectionAttribute(Synchronization=true, ExternalThreading=true)]
private static void StartThread()
{
    Thread t = new Thread(new ThreadStart(WatchFileEvents));
    
    // Start the new thread. On a uniprocessor, the thread is not given
    // any processor time until the main thread yields the processor.
    t.Start();
    
    // Give the new thread a chance to execute.
    Thread.Sleep(1000);
}
' Use the enumeration flags to indicate that this method exposes  
' synchronization and external threading.
<HostProtectionAttribute(Synchronization := True, _
    ExternalThreading := True)> _
Private Shared Sub StartThread()
    Dim t As New Thread(New ThreadStart(AddressOf WatchFileEvents))

    ' Start the new thread. On a uniprocessor, the thread is not given 
    ' any processor time until the main thread yields the processor.  
    t.Start()

    ' Give the new thread a chance to execute.
    Thread.Sleep(1000)
End Sub

Uwagi

Kod, który uwidacznia wątki zewnętrzne, tworzy lub manipuluje wątkami innymi niż własne, które mogą być szkodliwe dla hosta.

Dotyczy

Zobacz też