Gets or sets a value that indicates whether the action should be
processed synchronously.
Namespace:
Microsoft.ConfigurationManagement.AdminConsole.Schema
Assembly:
Microsoft.ConfigurationManagement.ManagementProvider (in
microsoft.configurationmanagement.managementprovider.dll)
Usage
Visual Basic |
Dim instance As ActionDescription
Dim value As Boolean
value = instance.SynchronousAction
instance.SynchronousAction = value
|
Syntax
Visual Basic |
<XmlAttributeAttribute("SynchronousAction")> _
<DefaultValueAttribute(False)> _
Public Property SynchronousAction As Boolean
|
C# |
[XmlAttributeAttribute("SynchronousAction")]
[DefaultValueAttribute(false)]
public bool SynchronousAction { get; set; }
|
C++ |
[XmlAttributeAttribute(L"SynchronousAction")]
[DefaultValueAttribute(false)]
public:
property bool SynchronousAction {
bool get ();
void set (bool value);
}
|
J# |
/** @property */
/** @attribute DebuggerStepThroughAttribute() */
public boolean get_SynchronousAction ()
/** @property */
/** @attribute DebuggerStepThroughAttribute() */
public void set_SynchronousAction (boolean value)
|
JScript |
DebuggerStepThroughAttribute
public function get SynchronousAction () : boolean
DebuggerStepThroughAttribute
public function set SynchronousAction (value : boolean)
|
Property Value
true if the action should be processed synchronously;
otherwise
false (default).
Remarks
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2003,Windows Vista
See Also