UdpClient.Client プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
基になるネットワーク Socket を取得または設定します。
public:
property System::Net::Sockets::Socket ^ Client { System::Net::Sockets::Socket ^ get(); void set(System::Net::Sockets::Socket ^ value); };
protected:
property System::Net::Sockets::Socket ^ Client { System::Net::Sockets::Socket ^ get(); void set(System::Net::Sockets::Socket ^ value); };
public System.Net.Sockets.Socket Client { get; set; }
protected System.Net.Sockets.Socket Client { get; set; }
member this.Client : System.Net.Sockets.Socket with get, set
Public Property Client As Socket
Protected Property Client As Socket
プロパティ値
基になるネットワーク Socket。
例
次の例では、 プロパティの使用方法を Client 示します。 この例では、基になる Socketに対してブロードキャストが有効になっています。
// This derived class demonstrate the use of three protected methods belonging to the UdpClient class.
public ref class MyUdpClientDerivedClass: public UdpClient
{
public:
MyUdpClientDerivedClass()
: UdpClient()
{}
void UsingProtectedMethods()
{
//Uses the protected Active property belonging to the UdpClient base class to determine if a connection is established.
if ( this->Active )
{
//Calls the protected Client property belonging to the UdpClient base class.
Socket^ s = this->Client;
//Uses the Socket returned by Client to set an option that is not available using UdpClient.
s->SetSocketOption( SocketOptionLevel::Socket, SocketOptionName::Broadcast, 1 );
}
}
};
public static void Main(string[] args)
{
if (args.Length < 1)
{
Console.WriteLine("you must specify a port number!");
return;
}
UdpClient uClient = new UdpClient(Convert.ToInt32(args[0]));
Socket uSocket = uClient.Client;
// use the underlying socket to enable broadcast.
uSocket.SetSocketOption(SocketOptionLevel.Socket,
SocketOptionName.Broadcast, 1);
}
' This derived class demonstrates the use of three protected methods belonging to the UdpClient class.
Public Class MyUdpClientDerivedClass
Inherits UdpClient
Public Sub New()
End Sub
Public Sub UsingProtectedMethods()
'Uses the protected Active property belonging to the UdpClient base class to determine if a connection is established.
If Me.Active Then
' Calls the protected Client property belonging to the UdpClient base class.
Dim s As Socket = Me.Client
'Uses the Socket returned by Client to set an option that is not available using UdpClient.
s.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 1)
End If
End Sub
End Class
注釈
UdpClient は、ネットワーク経由で Socket データを送受信するために使用される を作成します。 から UdpClient 派生したクラスは、このプロパティを使用して、この Socketを取得または設定できます。 を超えるアクセスが必要な場合は、 からClient返される基になる Socket をUdpClient使用します。 を使用 Client して、基になる Socket を既存 Socketの に設定することもできます。 これは、既存Socketの を使用するシンプルさをUdpClient利用する場合に便利です。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET