次の方法で共有


SiteIdentityPermission.IsSubsetOf(IPermission) メソッド

定義

現在のアクセス許可が、指定したアクセス許可のサブセットであるかどうかを判断します。

public:
 override bool IsSubsetOf(System::Security::IPermission ^ target);
public override bool IsSubsetOf (System.Security.IPermission target);
override this.IsSubsetOf : System.Security.IPermission -> bool
Public Overrides Function IsSubsetOf (target As IPermission) As Boolean

パラメーター

target
IPermission

サブセットの関係にあるかどうかをテストするアクセス許可。 このアクセス許可は、現在のアクセス許可と同じ型であることが必要です。

戻り値

現在のアクセス許可が、指定したアクセス許可のサブセットの場合は true。それ以外の場合は false

例外

target パラメーターが null でなく、また現在のアクセス許可と同じ型でもありません。

注釈

現在のアクセス許可が、指定したアクセス許可に完全に含まれるサイトを指定している場合、現在のアクセス許可は、指定されたアクセス許可のサブセットです。

次の表は、現在の IsSubsetOf アクセス許可と指定したアクセス許可の値の範囲の の値を示しています。

現在のアクセス許可 指定されたアクセス許可 IsSubsetOf
www.fourthcoffee.com www.fourthcoffee.com true
www.fourthcoffee.com www.tailspintoys.com false
www.fourthcoffee.com *.fourthcoffee.com true
www.fourthcoffee.com *.com true
*.fourthcoffee.com www.fourthcoffee.com false
*.fourthcoffee.com *.fourthcoffee.com true
*.fourthcoffee.com *.com true
を除くあらゆるもの None * true
None すべて true

適用対象