ContextUtil.IsSecurityEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether role-based security is active in the current context.
public:
static property bool IsSecurityEnabled { bool get(); };
public static bool IsSecurityEnabled { get; }
static member IsSecurityEnabled : bool
Public Shared ReadOnly Property IsSecurityEnabled As Boolean
Property Value
true
if the current context has security enabled; otherwise, false
.
Exceptions
There is no COM+ context available.
Examples
The following code example gets the value of a IsSecurityEnabled property.
[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
Applies to
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.