Penggunaan HttpWebRequest Class, HttpWebResponse Vb.Net

Belajar Vb.Net Pemula : cara penggunaan WebRequest Class, HttpWebRequest, HttpWebResponse, StreamReader Vb.net, tutorial Vb.Net selengkapnya di Sector Code

HttpWebRequest Class - HttpWebResponse Class Method - Bahasa pemrograman Vb.Net memungkin developer untuk mengirimkan data menggunakan class WebRequest dan mendapatkan response dari server menggunakan class WebResponse.

Silahkan lihat methode yang digunakan untuk mengirimkan data ke server dan kembali membaca respon dari server dan menampilkannnya di aplikasi console, buka aplikasi visual studio kamu dan tuliskan code vb.net berikut :
HttpWebRequest Class  HttpWebResponse Vb.Net

Imports System
Imports System.IO
Imports System.Net
Imports System.Text
Module Module1

    Sub Main()
        'membuat request dengan URL
        Dim _req As HttpWebRequest _
        = HttpWebRequest.Create( _
        "https://www.facebook.com/SectorsCode/")
        'membuat method berupa 'POST'
        _req.Method = "POST"
        'buat post yang diconvert kedalam byte
        Dim _post As String = _
        "Ini pesan yang akan dikirim ke server"
        Dim _postByte As Byte() = _
        Encoding.UTF8.GetBytes(_post)
        'membuat properti webrequest
        _req.ContentType = _
        "application/x-www-form-urlencoded"
        _req.ContentLength = _postByte.Length
        Dim _postStream As Stream = _
        _req.GetRequestStream()
        'tulis data rewquest ke stream.
        _postStream.Write(_postByte, _
        0, _postByte.Length)
        _postStream.Close()
        'Baca respon dari server
        Dim response As WebResponse = _
        _req.GetResponse()
        _postStream = response.GetResponseStream()
        Dim reader As New StreamReader(_postStream)
        'Baca content server
        Dim _resServer As String = _
        reader.ReadToEnd()
        'memunculkan content di console
        Console.WriteLine(_resServer + vbNewLine + "Finished")
        'memunculkan status respon dari server
        Console.WriteLine("Status =============> " + _
        CType(response, HttpWebResponse).StatusDescription)
        reader.Close()
        _postStream.Close()
        response.Close()
        Console.ReadKey()
    End Sub

End Module
Penjelasan :
Aplikasi diatas akan mengirimkan request ke server facebook dengan menggunakan Method "POST" dan akan menampilkan respon yang dikirim keserver pada console.

COMMENTS


Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: Penggunaan HttpWebRequest Class, HttpWebResponse Vb.Net
Penggunaan HttpWebRequest Class, HttpWebResponse Vb.Net
Belajar Vb.Net Pemula : cara penggunaan WebRequest Class, HttpWebRequest, HttpWebResponse, StreamReader Vb.net, tutorial Vb.Net selengkapnya di Sector Code
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrSOg08DswQaPanqj8XGQXXuswZbTwlH5Z4tYyuo1nFwXB1x62pNCzEQrF6zdOXIf934o91ti7WfixXKgcsnkFhr19IYkSx-pt2_BHfjQOdgjsFej1TmGMQ8lQ0LRdcg_kgB1L9CdYlZs/s320/httpwebrequest-vbnet.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrSOg08DswQaPanqj8XGQXXuswZbTwlH5Z4tYyuo1nFwXB1x62pNCzEQrF6zdOXIf934o91ti7WfixXKgcsnkFhr19IYkSx-pt2_BHfjQOdgjsFej1TmGMQ8lQ0LRdcg_kgB1L9CdYlZs/s72-c/httpwebrequest-vbnet.png
KODE AJAIB
https://scqq.blogspot.com/2015/11/penggunaan-httpwebrequest-class.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2015/11/penggunaan-httpwebrequest-class.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy