ContextUtil.IsSecurityEnabled プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在のコンテキストでロール ベースのセキュリティがアクティブかどうかを示す値を取得します。
public:
static property bool IsSecurityEnabled { bool get(); };
public static bool IsSecurityEnabled { get; }
static member IsSecurityEnabled : bool
Public Shared ReadOnly Property IsSecurityEnabled As Boolean
プロパティ値
現在のコンテキストのセキュリティが有効である場合は true
。それ以外の場合は false
。
例外
使用できる COM+ コンテキストはありません。
例
次のコード例では、 プロパティの値を IsSecurityEnabled 取得します。
[SecurityRole("Role1")]
public ref class ContextUtil_IsSecurityEnabled: public ServicedComponent
{
public:
void Example()
{
// Display whether role-based security is active for the current COM+
// context.
Console::WriteLine( "Role-based security active in current context: {0}",
ContextUtil::IsSecurityEnabled );
}
};
[SecurityRole("Role1")]
public class ContextUtil_IsSecurityEnabled : ServicedComponent
{
public void Example()
{
// Display whether role-based security is active for the current COM+
// context.
Console.WriteLine("Role-based security active in current context: {0}",
ContextUtil.IsSecurityEnabled);
}
}
<SecurityRole("Role1")> _
Public Class ContextUtil_IsSecurityEnabled
Inherits ServicedComponent
Public Sub Example()
' Display whether role-based security is active for the current COM+
' context.
MsgBox("Role-based security active in current context: " & ContextUtil.IsSecurityEnabled)
End Sub
End Class
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET