ApplicationQueuingAttribute.Enabled-Eigenschaft
Ruft einen Wert ab, der angibt, ob die Warteschlangenunterstützung aktiviert ist, oder legt diesen fest.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Syntax
'Declaration
Public Property Enabled As Boolean
'Usage
Dim instance As ApplicationQueuingAttribute
Dim value As Boolean
value = instance.Enabled
instance.Enabled = value
public bool Enabled { get; set; }
public:
property bool Enabled {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_Enabled ()
/** @property */
public void set_Enabled (boolean value)
public function get Enabled () : boolean
public function set Enabled (value : boolean)
Eigenschaftenwert
true, wenn die Warteschlangenunterstützung aktiviert ist, andernfalls false. Der durch den Konstruktor festgelegte Standardwert ist true.
Hinweise
In der Standardeinstellung können Anwendungen in Warteschlangen befindliche Komponenten nicht verwenden. Wenn ApplicationQueuingAttribute instanziiert wird, kann eine Anwendung Komponenten in Warteschlangen verwenden. Die Anwendung kann jedoch keine in der Warteschlange vorhandenen Clientmeldungen abhören.
Beispiel
Im folgenden Codebeispiel wird der Wert der Enabled-Eigenschaft eines ApplicationQueuing-Attributs abgerufen und festgelegt.
' This example code requires that an ApplicationQueuing attribute be
' applied to the assembly, as shown below:
' [assembly: ApplicationQueuing]
' Get the ApplicationQueuingAttribute applied to the assembly.
Dim attribute As ApplicationQueuingAttribute = CType(Attribute.GetCustomAttribute(System.Reflection.Assembly.GetExecutingAssembly(), GetType(ApplicationQueuingAttribute), False), ApplicationQueuingAttribute)
' Display the current value of the attribute's Enabled property.
MsgBox("ApplicationQueuingAttribute.Enabled: " & attribute.Enabled)
' Set the Enabled property value of the attribute.
attribute.Enabled = False
' Display the new value of the attribute's Enabled property.
MsgBox("ApplicationQueuingAttribute.Enabled: " & attribute.Enabled)
// This example code requires that an ApplicationQueuing attribute be
// applied to the assembly, as shown below:
// [assembly: ApplicationQueuing]
// Get the ApplicationQueuingAttribute applied to the assembly.
ApplicationQueuingAttribute attribute =
(ApplicationQueuingAttribute)Attribute.GetCustomAttribute(
System.Reflection.Assembly.GetExecutingAssembly(),
typeof(ApplicationQueuingAttribute),
false);
// Display the current value of the attribute's Enabled property.
Console.WriteLine("ApplicationQueuingAttribute.Enabled: {0}",
attribute.Enabled);
// Set the Enabled property value of the attribute.
attribute.Enabled = false;
// Display the new value of the attribute's Enabled property.
Console.WriteLine("ApplicationQueuingAttribute.Enabled: {0}",
attribute.Enabled);
// This example code requires that an ApplicationQueuing attribute be
// applied to the assembly, as shown below:
// /** @assembly ApplicationQueuing()
// */
// Get the ApplicationQueuingAttribute applied to the assembly.
ApplicationQueuingAttribute attribute = (ApplicationQueuingAttribute)(
Attribute.GetCustomAttribute(System.Reflection.Assembly.
GetExecutingAssembly(), ApplicationQueuingAttribute.class.ToType(),
false));
// Display the current value of the attribute's Enabled property.
Console.WriteLine("ApplicationQueuingAttribute.Enabled: {0}",
System.Convert.ToString(attribute.get_Enabled()));
// Set the Enabled property value of the attribute.
attribute.set_Enabled(false);
// Display the new value of the attribute's Enabled property.
Console.WriteLine("ApplicationQueuingAttribute.Enabled: {0}",
System.Convert.ToString(attribute.get_Enabled()));
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter .
Plattformen
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
ApplicationQueuingAttribute-Klasse
ApplicationQueuingAttribute-Member
System.EnterpriseServices-Namespace