ServicePointManager クラス
アセンブリ: System (system.dll 内)


ServicePointManager は、ServicePoint クラスのインスタンスを作成、維持、および削除するために使用する静的クラスです。
アプリケーションが ServicePointManager オブジェクトを通じてインターネット リソースの URI (Uniform Resource Identifier) への接続を要求すると、ServicePointManager は、その URI によって識別されるホストの接続情報が格納された ServicePoint オブジェクトを返します。そのホストの既存の ServicePoint オブジェクトがある場合、ServicePointManager オブジェクトは既存の ServicePoint オブジェクトを返します。それ以外の場合、ServicePointManager オブジェクトは新しい ServicePoint オブジェクトを作成します。

www.contoso.com という URI に接続する ServicePoint オブジェクトを作成するコード例を次に示します。
Dim myUri As New Uri("http://www.contoso.com/") Dim mySP As ServicePoint = ServicePointManager.FindServicePoint(myUri)
Uri myUri = new Uri("http://www.contoso.com/"); ServicePoint mySP = ServicePointManager.FindServicePoint(myUri);
Uri^ myUri = gcnew Uri( "http://www.contoso.com/" ); ServicePoint^ mySP = ServicePointManager::FindServicePoint( myUri );

System.Net.ServicePointManager


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からServicePointManager クラスを検索する場合は、下記のリンクをクリックしてください。

- ServicePointManager クラスのページへのリンク