Re: The progress of HTTP client

2018-03-13 Thread Careen joseph


Uri uri = new Uri("...");
try
{
HttpClient client = new HttpClient();
var downloadTask = client.GetAsync(uri);

downloadTask.Progress = (result, progress) => 
{
Debug.WriteLine("===start===");
Debug.WriteLine(progress.BytesReceived);
Debug.WriteLine(progress.TotalBytesToReceive);
Debug.WriteLine("===end===");
};

var Downloadresult = await downloadTask;
Debug.WriteLine("Done: " + 
Downloadresult.StatusCode.ToString());
}
catch (Exception ex)
{
}

https://www.besanttechnologies.com/training-courses/data-warehousing-training/hadoop-training-institute-in-chennai

-- 
You received this message because you are subscribed to the Google Groups "PHP 
Framework Interoperability Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to php-fig+unsubscr...@googlegroups.com.
To post to this group, send email to php-fig@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/php-fig/c010b93f-38c9-487e-82f3-add7c424f6b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Integration of JS and CSS

2018-03-06 Thread Careen joseph


Spring Boot Starter Web provides all the dependencies and the auto 
> configuration need to develop web applications. It is the first dependency 
> we would use.
>
> 
> org.springframework.boot
> spring-boot-starter-web
> 
>
> We want to use JSP as the view. Default embedded servlet container for 
> Spring Boot Starter Web is tomcat. To enable support for JSP’s, we would 
> need to add a dependency on tomcat-embed-jasper.
>
https://www.besanttechnologies.com/hadoop-training-jaya-nagar-bangalore 

-- 
You received this message because you are subscribed to the Google Groups "PHP 
Framework Interoperability Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to php-fig+unsubscr...@googlegroups.com.
To post to this group, send email to php-fig@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/php-fig/92685243-079f-4c71-a53b-d33d8d933062%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.