ContractDescription.HasProtectionLevel Proprietà

Definizione

Ottiene un valore che indica se è stato impostato un livello di protezione per il contratto.

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

Valore della proprietà

Boolean

true se il livello di protezione è stato impostato; in caso contrario false.

Esempio

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

Commenti

Quando si imposta la proprietà ProtectionLevel, la proprietà HasProtectionLevel viene impostata su true.

Si applica a