Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

วิธีการใช้ปลายทาง Asp.Net WebAPI จากแอปพลิเคชันอื่นโดยใช้ C #


HttpClient class จัดเตรียมคลาสพื้นฐานสำหรับการส่ง/รับการร้องขอ/การตอบกลับ HTTP จาก URL เป็นคุณสมบัติ async ที่รองรับของ .NET framework HttpClient สามารถประมวลผลคำขอหลายรายการพร้อมกันได้ เป็นเลเยอร์บน HttpWebRequest และ HttpWebResponse วิธีการทั้งหมดที่มี HttpClient เป็นแบบอะซิงโครนัส HttpClient มีอยู่ในเนมสเปซ System.Net.Http

ให้เราสร้างแอปพลิเคชัน WebAPI ที่มี StudentController และวิธีการดำเนินการที่เกี่ยวข้อง

โมเดลนักศึกษา

namespace DemoWebApplication.Models{
   public class Student{
      public int Id { get; set; }
      public string Name { get; set; }
   }
}

นักเรียนควบคุม

using DemoWebApplication.Models;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace DemoWebApplication.Controllers{
   public class StudentController : ApiController{
      List<Student> students = new List<Student>{
         new Student{
            Id = 1,
            Name = "Mark"
         },
         new Student{
            Id = 2,
            Name = "John"
         }
      };
      public IEnumerable<Student> Get(){
         return students;
      }
      public Student Get(int id){
         var studentForId = students.FirstOrDefault(x => x.Id == id);
         return studentForId;
      }
   }
}

วิธีการใช้ปลายทาง Asp.Net WebAPI จากแอปพลิเคชันอื่นโดยใช้ C #

วิธีการใช้ปลายทาง Asp.Net WebAPI จากแอปพลิเคชันอื่นโดยใช้ C #

ตอนนี้ ให้เราสร้างแอปพลิเคชันคอนโซล ที่เราต้องการใช้ปลายทาง WebApi ที่สร้างขึ้นด้านบนเพื่อรับรายละเอียดของนักเรียน

ตัวอย่าง

using System;
using System.Net.Http;
namespace DemoApplication{
   public class Program{
      static void Main(string[] args){
         using (var httpClient = new HttpClient()){
            Console.WriteLine("Calling WebApi for get all students");
            var students = GetResponse("student");
            Console.WriteLine($"All Students: {students}");
            Console.WriteLine("Calling WebApi for student id 2");
            var studentForId = GetResponse("student/2");
            Console.WriteLine($"Student for Id 2: {students}");
            Console.ReadLine();
         }
      }
      private static string GetResponse(string url){
         using (var httpClient = new HttpClient()){
            httpClient.BaseAddress = new Uri("https://localhost:58174/api/");
            var responseTask = httpClient.GetAsync(url);
            var result = responseTask.Result;
            var readTask = result.Content.ReadAsStringAsync();
            return readTask.Result;
         }
      }
   }
}

ผลลัพธ์

Calling WebApi for get all students
All Students: [{"Id":1,"Name":"Mark"},{"Id":2,"Name":"John"}]
Calling WebApi for student id 2
Student for Id 2: {"Id":2,"Name":"John"}

ในตัวอย่างข้างต้น เราจะเห็นว่าปลายทางของ WebApi ถูกเรียกจากแอปพลิเคชันคอนโซลที่แยกจากกัน