Compartir a través de


ContractDescription.HasProtectionLevel Propiedad

Definición

Obtiene un valor que indica si se ha establecido un nivel de protección para el contrato.

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

Valor de propiedad

Boolean

true si se ha establecido el nivel de protección; de lo contrario, false.

Ejemplos

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

Comentarios

Cuando se establece el ProtectionLevel, la propiedad HasProtectionLevel se establece en true.

Se aplica a