Socket.AddressFamily 属性

定义

获取 Socket 的地址族。Gets the address family of the Socket.

public:
 property System::Net::Sockets::AddressFamily AddressFamily { System::Net::Sockets::AddressFamily get(); };
public System.Net.Sockets.AddressFamily AddressFamily { get; }
member this.AddressFamily : System.Net.Sockets.AddressFamily
Public ReadOnly Property AddressFamily As AddressFamily

属性值

AddressFamily

AddressFamily 值之一。One of the AddressFamily values.

示例

下面的代码示例将 AddressFamilySocketType 和显示 ProtocolType 到控制台。The following code example displays the AddressFamily, SocketType, and ProtocolType to the console.

Socket^ s = gcnew Socket( lep->Address->AddressFamily,SocketType::Stream,ProtocolType::Tcp );

//Uses the AddressFamily, SocketType, and ProtocolType properties.
Console::Write(  "I just set the following properties of socket: \n" );
Console::Write(  "Address Family = {0}", s->AddressFamily.ToString() );
Console::Write(  "\nSocketType = {0}", s->SocketType.ToString() );
Console::WriteLine(  "\nProtocolType = {0}", s->ProtocolType.ToString() );
Socket s = new Socket (lep.Address.AddressFamily, SocketType.Stream, ProtocolType.Tcp);

//Using the AddressFamily, SocketType, and ProtocolType properties.
Console.WriteLine ("I just set the following properties of socket: " + "Address Family = " + s.AddressFamily.ToString () + "\nSocketType = " + s.SocketType.ToString () + "\nProtocolType = " + s.ProtocolType.ToString ());

Dim s As New Socket(lep.Address.AddressFamily, SocketType.Stream, ProtocolType.Tcp)

'Using the AddressFamily, SocketType, and ProtocolType properties.
Console.WriteLine(("I just set the following properties of socket: " + "Address Family = " + s.AddressFamily.ToString() + ControlChars.Cr + "SocketType = " + s.SocketType.ToString() + ControlChars.Cr + "ProtocolType = " + s.ProtocolType.ToString()))

注解

AddressFamily指定类的实例可以使用的寻址方案 SocketThe AddressFamily specifies the addressing scheme that an instance of the Socket class can use. 此属性是只读的,并且在创建时设置 SocketThis property is read-only and is set when the Socket is created.

适用于

另请参阅