DownloadStringCompletedEventArgs.Result Propriedade

Definição

Obtém os dados que são baixados por um método DownloadStringAsync.

public:
 property System::String ^ Result { System::String ^ get(); };
public string Result { get; }
member this.Result : string
Public ReadOnly Property Result As String

Valor da propriedade

Um String que contém os dados baixados.

Exemplos

O exemplo de código a seguir exibe o valor dessa propriedade.

void DownloadStringCallback2( Object^ /*sender*/, DownloadStringCompletedEventArgs^ e )
{

   // If the request was not canceled and did not throw
   // an exception, display the resource.
   if (  !e->Cancelled && e->Error == nullptr )
   {
      String^ textString = dynamic_cast<String^>(e->Result);
      Console::WriteLine( textString );
   }
}
private static void DownloadStringCallback2(Object sender, DownloadStringCompletedEventArgs e)
{
    // If the request was not canceled and did not throw
    // an exception, display the resource.
    if (!e.Cancelled && e.Error == null)
    {
        string textString = (string)e.Result;

        Console.WriteLine(textString);
    }
}
Private Shared Sub DownloadStringCallback2(ByVal sender As Object, ByVal e As DownloadStringCompletedEventArgs)

    '  If the request was not canceled and did not throw
    '  an exception, display the resource.
    If e.Cancelled = False AndAlso e.Error Is Nothing Then

        Dim textString As String = CStr(e.Result)
        Console.WriteLine(textString)
    End If
End Sub

Comentários

Você deve marcar as Error propriedades e Cancelled antes de usar os dados retornados por essa propriedade. Se o Error valor da propriedade for um Exception objeto ou o Cancelled valor da propriedade for true, a operação assíncrona não foi concluída corretamente e o Result valor da propriedade não será válido.

Aplica-se a