OperationInfo.HasProtectionLevel 属性

定义

获取有关操作是否具有已定义的 ProtectionLevel 的信息。

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

属性值

Boolean

一个布尔值,指示操作是否具有与其关联的 ProtectionLevel

示例

下面的示例演示如何访问 HasProtectionLevel 属性。

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

适用于