日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > asp.net >内容正文

asp.net

.Net FrameWork中的網絡操作

發布時間:2023/12/31 asp.net 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 .Net FrameWork中的網絡操作 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Code
/*
?*?Created?by?SharpDevelop.
?*?User:?Administrator
?*?Date:?2008/9/11
?*?Time:?下午?03:51
?*?
?
*/
using?System;
using?System.Net;
class?Test
{
????
private?static?string?getIPAddress()
????{
????????System.Net.IPAddress?addr;
????????addr
=new?System.Net.IPAddress(Dns.GetHostByName(Dns.GetHostName()).AddressList[0].Address);
????????
return?addr.ToString();
????}
????
static?void?Main()
????{

????????
????????Console.WriteLine(System.Net.Dns.GetHostName());
????????Console.WriteLine(getIPAddress());
????}
}


using?System;
using?System.Net;
using?System.Net.Sockets;
using?System.Text.RegularExpressions;

namespace?Mssc.Services.ConnectionManagement
{

??
class?TestIPAddress?
??{

????
/**
??????*?The?IPAddresses?method?obtains?the?selected?server?IP?address?information.
??????*?It?then?displays?the?type?of?address?family?supported?by?the?server?and?its?
??????*?IP?address?in?standard?and?byte?format.
??????*
*/
????
private?static?void?IPAddresses(string?server)?
????{
??????
try?
??????{
????????System.Text.ASCIIEncoding?ASCII?
=?new?System.Text.ASCIIEncoding();

????????
//?Get?server?related?information.
????????IPHostEntry?heserver?=?Dns.GetHostEntry(server);

????????
//?Loop?on?the?AddressList
????????foreach?(IPAddress?curAdd?in?heserver.AddressList)?
????????{


??????????
//?Display?the?type?of?address?family?supported?by?the?server.?If?the
??????????
//?server?is?IPv6-enabled?this?value?is:?InternNetworkV6.?If?the?server
??????????
//?is?also?IPv4-enabled?there?will?be?an?additional?value?of?InterNetwork.
??????????Console.WriteLine("AddressFamily:?"?+?curAdd.AddressFamily.ToString());

??????????
//?Display?the?ScopeId?property?in?case?of?IPV6?addresses.
??????????if(curAdd.AddressFamily.ToString()?==?ProtocolFamily.InterNetworkV6.ToString())
????????????Console.WriteLine(
"Scope?Id:?"?+?curAdd.ScopeId.ToString());


??????????
//?Display?the?server?IP?address?in?the?standard?format.?In?
??????????
//?IPv4?the?format?will?be?dotted-quad?notation,?in?IPv6?it?will?be
??????????
//?in?in?colon-hexadecimal?notation.
??????????Console.WriteLine("Address:?"?+?curAdd.ToString());

??????????
//?Display?the?server?IP?address?in?byte?format.
??????????Console.Write("AddressBytes:?");



??????????Byte[]?bytes?
=?curAdd.GetAddressBytes();
??????????
for?(int?i?=?0;?i?<?bytes.Length;?i++)?
??????????{
????????????Console.Write(bytes[i]);
??????????}??????????????????????????

??????????Console.WriteLine(
"\r\n");

????????}

??????}
??????
catch?(Exception?e)?
??????{
????????Console.WriteLine(
"[DoResolve]?Exception:?"?+?e.ToString());
??????}
????}

????
//?This?IPAddressAdditionalInfo?displays?additional?server?address?information.
????private?static?void?IPAddressAdditionalInfo()?
????{
??????
try?
??????{
????????
//?Display?the?flags?that?show?if?the?server?supports?IPv4?or?IPv6
????????
//?address?schemas.
????????Console.WriteLine("\r\nSupportsIPv4:?"?+?Socket.SupportsIPv4);
????????Console.WriteLine(
"SupportsIPv6:?"?+?Socket.SupportsIPv6);

????????
if?(Socket.SupportsIPv6)
????????{
??????????
//?Display?the?server?Any?address.?This?IP?address?indicates?that?the?server?
??????????
//?should?listen?for?client?activity?on?all?network?interfaces.?
??????????Console.WriteLine("\r\nIPv6Any:?"?+?IPAddress.IPv6Any.ToString());

??????????
//?Display?the?server?loopback?address.?
??????????Console.WriteLine("IPv6Loopback:?"?+?IPAddress.IPv6Loopback.ToString());

??????????
//?Used?during?autoconfiguration?first?phase.
??????????Console.WriteLine("IPv6None:?"?+?IPAddress.IPv6None.ToString());

??????????Console.WriteLine(
"IsLoopback(IPv6Loopback):?"?+?IPAddress.IsLoopback(IPAddress.IPv6Loopback));
????????}
????????Console.WriteLine(
"IsLoopback(Loopback):?"?+?IPAddress.IsLoopback(IPAddress.Loopback));
??????}
??????
catch?(Exception?e)?
??????{
????????Console.WriteLine(
"[IPAddresses]?Exception:?"?+?e.ToString());
??????}
????}


????
public?static?void?Main(string[]?args)?
????{
??????
string?server?=?null;

??????
//?Define?a?regular?expression?to?parse?user's?input.
??????
//?This?is?a?security?check.?It?allows?only
??????
//?alphanumeric?input?string?between?2?to?40?character?long.
??????Regex?rex?=?new?Regex(@"^[a-zA-Z]\w{1,39}$");

??????
if?(args.Length?<?1)
??????{
????????
//?If?no?server?name?is?passed?as?an?argument?to?this?program,?use?the?current?
????????
//?server?name?as?default.
????????server?=?Dns.GetHostName();
????????Console.WriteLine(
"Using?current?host:?"?+?server);
??????}
??????
else
??????{
????????server?
=?args[0];
????????
if?(!(rex.Match(server)).Success)
????????{
??????????Console.WriteLine(
"Input?string?format?not?allowed.");
??????????
return;
????????}
??????}

??????
//?Get?the?list?of?the?addresses?associated?with?the?requested?server.
??????IPAddresses(server);

??????
//?Get?additonal?address?information.
??????IPAddressAdditionalInfo();
????}

??}
}

轉載于:https://www.cnblogs.com/Athrun/archive/2008/09/11/1289308.html

總結

以上是生活随笔為你收集整理的.Net FrameWork中的網絡操作的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。