Compartir a través de


OperationInfo.HasProtectionLevel Propiedad

Definición

Obtiene información acerca de si la operación tiene o no un ProtectionLevel definido.

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

Valor de propiedad

Valor booleano que indica si la operación tiene o no un ProtectionLevel asociado.

Ejemplos

En el ejemplo siguiente se muestra cómo se obtiene acceso a la propiedad HasProtectionLevel.

OperationInfo info = new OperationInfo();
bool hasProtectionLevel = info.HasProtectionLevel;
Dim info As New OperationInfo()
Dim hasProtectionLevel = info.HasProtectionLevel

Se aplica a