Partager via


WebRequestErrorEvent.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é

Informations sur le thread d'application.

Exemples

L’exemple de code suivant montre comment obtenir la valeur de propriété 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

Remarques

Les informations de thread standard sont définies par la WebThreadInformation classe .

S’applique à

Voir aussi