ProcessModelComAuthenticationLevel 列挙体
アセンブリ: System.Web (system.web.dll 内)

Public Enumeration ProcessModelComAuthenticationLevel

メンバ名 | 説明 | |
---|---|---|
Call | DCOM がクライアントの資格情報を認証することを指定します。このフィールドは定数です。 サーバーが各リモート プロシージャ コールの開始時に要求を受信したときに、DCOM がクライアントの資格情報を認証します。 | |
Connect | DCOM がクライアントの資格情報を認証することを指定します。このフィールドは定数です。 DCOM は、クライアントがサーバーとの関係を確立したときだけクライアントの資格情報を認証します。 これは既定値です。 | |
Default | DCOM が認証レベルを決定することを指定します。このフィールドは定数です。 | |
None | 認証を指定しません。このフィールドは定数です。 | |
Pkt | 受信したデータすべてが予測されたクライアントからのデータであることを DCOM が認証することを指定します。このフィールドは定数です。 | |
PktIntegrity | 転送されたデータを DCOM が認証および検査することを指定します。このフィールドは定数です。 | |
PktPrivacy | DCOM が先行するレベルをすべて認証し、暗号化を行うことを指定します。このフィールドは定数です。 |

ProcessModelComAuthenticationLevel は、ComAuthenticationLevel プロパティを設定するときに使用する値を列挙します。
![]() |
---|
ProcessModelComAuthenticationLevel 設定は、ASP.NET プロセス モデル (IIS 5.n、または IIS 6 の互換モードのみ) を使用する場合にのみ関係します。 |

ComAuthenticationLevel プロパティの設定方法を次のコード例に示します。
' Get the current ComAuthenticationLevel property value. Dim comAuthLevel _ As ProcessModelComAuthenticationLevel = _ processModelSection.ComAuthenticationLevel ' Set the ComAuthenticationLevel property to ' ProcessModelComAuthenticationLevel.Call. processModelSection.ComAuthenticationLevel = _ ProcessModelComAuthenticationLevel.Call
// Get the current ComAuthenticationLevel property value. ProcessModelComAuthenticationLevel comAuthLevel = processModelSection.ComAuthenticationLevel; // Set the ComAuthenticationLevel property to // ProcessModelComAuthenticationLevel.Call. processModelSection.ComAuthenticationLevel = ProcessModelComAuthenticationLevel.Call;

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


- ProcessModelComAuthenticationLevel 列挙体のページへのリンク