Socket.ProtocolType プロパティ

定義

Socket のプロトコルの種類を取得します。

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

プロパティ値

ProtocolType 値のいずれか 1 つ。

次のコード例では、AddressFamilySocketTypeおよび ProtocolType をコンソールに表示します。

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

注釈

プロパティは ProtocolType 、 の作成時に Socket 設定され、その によって使用されるプロトコルを Socket指定します。

適用対象