WebRequestErrorEvent.ThreadInformation Proprietà

Definizione

Ottiene le informazioni relative al thread dell'applicazione.

public:
 property System::Web::Management::WebThreadInformation ^ ThreadInformation { System::Web::Management::WebThreadInformation ^ get(); };
public System.Web.Management.WebThreadInformation ThreadInformation { get; }
member this.ThreadInformation : System.Web.Management.WebThreadInformation
Public ReadOnly Property ThreadInformation As WebThreadInformation

Valore della proprietà

Informazioni relative al thread dell'applicazione.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere il valore della ThreadInformation proprietà.

// Obtains the current thread information.
public string GetThreadInfo()
{
    string threadInfo = GetThreadInfo();
    return threadInfo;
}
' Obtains the current thread information.
Public Function GetThreadInfo() As String
   Dim threadInfo As String = GetThreadInfo()
   Return threadInfo
End Function 'GetThreadInfo

Commenti

Le informazioni sui thread standard sono definite dalla WebThreadInformation classe .

Si applica a

Vedi anche