Perpustakaan ini menyediakan dua fitur utama:
Pustaka ini TIDAK menyediakan fitur untuk menghubungi REST API seperti Whois-RWS ARIN.
Buat proyek konsol C# baru, lalu instal paket WhoisParsers NuGet dengan menggunakan Visual Studio GUI atau dengan menggunakan perintah ini di Package Manager Console:
Install-Package WhoisParsers
var parser = new WhoisParser ( new SectionTokenizer ( ) , new SectionParser ( ) ) ;
var parser = new WhoisParser ( new AfrinicSectionTokenizer ( ) , new SectionParser ( ) ) ;
Anda bisa mendapatkan contoh file arin.sample.txt dari sini.
var parser = new WhoisParser ( new SectionTokenizer ( ) , new SectionParser ( ) ) ;
var sections = parser . RetrieveSections ( @"arin.sample.txt" ) ;
foreach ( var section in sections )
{
Console . WriteLine ( string . Format ( CultureInfo . InvariantCulture , " Section ID: {0} " , section . Id ) ) ;
Console . WriteLine ( string . Format ( CultureInfo . InvariantCulture , " Number of records: {0} " , section . Records . Count ) ) ;
Console . WriteLine ( " ---- Section Records: " ) ;
Console . WriteLine ( section ) ;
Console . WriteLine ( ) ;
}
Fungsi publik yang disediakan oleh WhoisParser meliputi:
Fungsi | Keterangan |
---|---|
KolomPerJenis | Ambil daftar nama catatan unik untuk setiap jenis catatan dalam dump database. Variasi tanda tangan:
|
Ambil Bagian | Ambil bagian yang diurai dari database massal. Variasi tanda tangan:
|
Ambil Bagian Dari String | Ambil bagian yang diurai dari database massal tempat database diteruskan sebagai string. Variasi tanda tangan:
|
Pustaka berisi fungsi untuk menambah alamat IP IPV4 dan (yang lebih penting) IPv6.
using Microsoft . Geolocation . Whois . Utils ;
.. .
var ipv4Address = IPAddress . Parse ( " 192.168.0.1 " ) ;
Console . WriteLine ( string . Format ( CultureInfo . InvariantCulture , " Before: {0}, After: {1} " , ipv4Address , ipv4Address . Increment ( ) ) ) ;
var ipv6Address = IPAddress . Parse ( " 2001:db8:a0b:12f0::1 " ) ;
Console . WriteLine ( string . Format ( CultureInfo . InvariantCulture , " Before: {0}, After: {1} " , ipv6Address , ipv6Address . Increment ( ) ) ) ;
Outputnya terlihat seperti ini:
Before: 192.168.0.1, After: 192.168.0.2
Before: 2001:db8:a0b:12f0::1, After: 2001:db8:a0b:12f0::2
Dokumentasi TODO
Dokumentasi TODO
Dokumentasi TODO