# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
-packages/*
+packages/
## TODO: If the tool you use requires repositories.config, also uncomment the next line
!packages/repositories.config
<!--ContentPanel. Colocar aquĆ el contenido adicional-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<TextBox x:Name="CurrentDateTextBox" HorizontalAlignment="Left" Height="72" Margin="0,57,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="456" IsReadOnly="True" InputScope="Date"/>
- <Button x:Name="ButtonRetrieveRemoteData" Content="{Binding LocalizedResources.ButtonRetrieveRemoteData, Mode=OneWay, Source={StaticResource LocalizedStrings}}" HorizontalAlignment="Left" Margin="289,479,0,0" VerticalAlignment="Top" RenderTransformOrigin="-0.915,0.432" Click="ButtonRetrieveRemoteData_Click"/>
+ <Button x:Name="ButtonRetrieveRemoteData" Content="{Binding LocalizedResources.ButtonRetrieveRemoteData, Mode=OneWay, Source={StaticResource LocalizedStrings}}" HorizontalAlignment="Left" Margin="289,479,0,0" VerticalAlignment="Top" RenderTransformOrigin="-0.915,0.432"/>
</Grid>
string data = JsonConvert.SerializeObject(postData);
HttpContent content = new StringContent(data, System.Text.Encoding.UTF8, "application/json-rpc");
- // TODO: find out why HttpClient is sendig two times the same POST. Is there something wrong with the .NET implementation?
- // At least it is doing that, when error response from web server.
HttpResponseMessage response = await this.doCall(uri, content);
TResult result = default(TResult);