次の方法で共有


ContractDescription.HasProtectionLevel プロパティ

定義

コントラクトに保護レベルが設定されているかどうかを示す値を取得します。

public:
 property bool HasProtectionLevel { bool get(); };
public bool HasProtectionLevel { get; }
member this.HasProtectionLevel : bool
Public ReadOnly Property HasProtectionLevel As Boolean

プロパティ値

Boolean

保護レベルが設定されている場合は true。それ以外の場合は false

bool hasProtectionLevel = cd.HasProtectionLevel;
if (hasProtectionLevel)
{
    ProtectionLevel protectionLevel = cd.ProtectionLevel;
    Console.WriteLine("\tProtection Level: {0}", protectionLevel.ToString());
}
Dim hasProtectionLevel As Boolean = cd.HasProtectionLevel
If hasProtectionLevel Then
    Dim protectionLevel As ProtectionLevel = cd.ProtectionLevel
    Console.WriteLine(Constants.vbTab & "Protection Level: {0}", protectionLevel.ToString())
End If

注釈

ProtectionLevel が設定されると、HasProtectionLevel プロパティは true に設定されます。

適用対象