Aracılığıyla paylaş


Socket.SocketType Özellik

Tanım

türünü Socketalır.

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

Özellik Değeri

Değerlerden SocketType biri.

Örnekler

Aşağıdaki kod örneği, , ve ProtocolType konsolunu görüntüler.AddressFamilySocketType

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()))

Açıklamalar

SocketType salt okunurdur ve oluşturulduğunda ayarlanır Socket .

Şunlara uygulanır

Ayrıca bkz.