您的位置:首页 > 编程语言 > C#

获得套接字属性程序实例(C#)

2010-05-05 21:53 148 查看
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;

namespace Test
{
class Program
{
static void Main(string[] args)
{
IPAddress ipa = IPAddress.Parse("127.0.0.1");
IPEndPoint ipep = new IPEndPoint(ipa,8080);
Socket test_socket = new Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);
Console.WriteLine("AddressFamily:{0}",test_socket.AddressFamily);
Console.WriteLine("SocketType:{0}",test_socket.ProtocolType);
Console.WriteLine("Blocking:{0}",test_socket.Blocking);
test_socket.Blocking = false;
Console.WriteLine("new Blocking:{0}",test_socket.Blocking);
Console.WriteLine("Connected:{0}",test_socket.Connected);
test_socket.Bind(ipep);
IPEndPoint sodck_iep = (IPEndPoint)test_socket.LocalEndPoint;
Console.WriteLine("Local EndPoint:{0}",sodck_iep.ToString());
test_socket.Close();
Console.ReadKey();
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐