WebRequestErrorEvent.ThreadInformation Property

Definition

Gets the application thread information.

C#
public System.Web.Management.WebThreadInformation ThreadInformation { get; }

Property Value

The application thread information.

Examples

The following code example shows how to obtain the ThreadInformation property value.

C#
// Obtains the current thread information.
public string GetThreadInfo()
{
    string threadInfo = GetThreadInfo();
    return threadInfo;
}

Remarks

The standard thread information is defined by the WebThreadInformation class.

Applies to

Produkt Verze
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also