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.

Применяется к