Partager via


WebErrorEvent.ThreadInformation Propriété

Définition

Obtient les informations sur le thread d'application.

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

Valeur de propriété

WebThreadInformation

Objet WebThreadInformation qui contient des informations sur le thread en cours.

Exemples

L’exemple de code suivant montre comment obtenir la valeur de l’application ThreadInformation .

// 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

S’applique à