Compartir a través de


WebErrorEvent.ThreadInformation Propiedad

Definición

Obtiene la información de subprocesos de la aplicación.

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

Valor de propiedad

WebThreadInformation

Objeto WebThreadInformation que contiene información sobre el subproceso actual.

Ejemplos

En el ejemplo de código siguiente se muestra cómo obtener el valor de la aplicación 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

Se aplica a