Aracılığıyla paylaş


ContractDescription.HasProtectionLevel Özellik

Tanım

Sözleşmenin bir koruma düzeyi ayarlanıp ayarlanmadığını gösteren bir değer alır.

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

Özellik Değeri

Boolean

true koruma düzeyi ayarlandıysa; aksi takdirde , false.

Örnekler

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

Açıklamalar

ProtectionLevel ayarlandığında özelliği HasProtectionLevel olarak trueayarlanır.

Şunlara uygulanır