共用方式為


OperationInfo.HasProtectionLevel 屬性

定義

取得作業是否具有已定義的 ProtectionLevel 之相關資訊。

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

屬性值

布林值,表示作業是否有相關聯的 ProtectionLevel

範例

下列範例將示範如何存取 HasProtectionLevel 屬性。

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

適用於