Compartir a través de


WebRequestErrorEvent.ThreadInformation Propiedad

Definición

Obtiene la información de subproceso de 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

Información de subproceso de aplicación.

Ejemplos

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

Comentarios

La clase define la WebThreadInformation información del subproceso estándar.

Se aplica a

Consulte también