Compartilhar via


WebRequestErrorEvent.ThreadInformation Propriedade

Definição

Obtém as informações de thread do aplicativo.

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 da propriedade

WebThreadInformation

As informações do thread do aplicativo.

Exemplos

O exemplo de código a seguir mostra como obter o valor da ThreadInformation propriedade.

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

Comentários

As informações de thread padrão são definidas pela WebThreadInformation classe.

Aplica-se a

Confira também